@keyframes sonar {
    0% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes progress-animation {
    0% {
        background-position: 100%;
    }
    100% {
        background-position: 0;
    }
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1392px;
    }
}

.row {
    margin-left: -8px;
    margin-right: -8px;
}

.row>*,
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-left: 8px;
    padding-right: 8px;
}

html {
    font-size: 20px;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 14px;
    background-color: #101820;
    line-height: 24px;
    color: #fff;
}

.hidden {
    display: none !important;
}

.color {
    color: #20BB5B !important;
}

.color-y {
    color: rgba(255, 205, 8, 0.9);
}

.color-white {
    color: #fff !important;
}

a {
    transition: .2s;
    text-decoration: none;
}

a:hover,
.chapter a:focus {
    color: #20BB5B;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    gap: 8px;
    background: #20BB5B;
    box-shadow: 0px 0px 20px rgba(32, 187, 91, 0.15);
    border-radius: 8px;
    color: #fff;
    border: 1px solid #20BB5B;
    font-size: 14px;
    line-height: 34px;
    text-transform: capitalize;
}

.btn ion-icon {
    font-size: 16px;
}

.btn:focus,
.btn:hover {
    box-shadow: 0px 4px 50px rgba(32, 187, 91, 0.4);
    color: #fff;
}

.btn-w {
    background: #fff;
    border-color: #fff;
    color: #20BB5B;
}

.btn-w:hover,
.btn-w:focus {
    box-shadow: none;
    background: rgba(32, 187, 91, 0.15);
    border-color: #20BB5B;
    color: #20BB5B;
}

.relative {
    position: relative;
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.row-custom {
    margin-left: -12px;
    margin-right: -12px;
}

.row-custom>* {
    padding-left: 12px;
    padding-right: 12px;
}

.error {
    color: red;
}

::-webkit-scrollbar {
    width: 6px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #3D4A56;
    border-radius: 24px;
}

::-webkit-input-placeholder {
    /* Edge */
    color: #697780;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #697780;
}

::placeholder {
    color: #697780;
}

.scroll-y {
    overflow: hidden;
    overflow-y: scroll;
    max-height: 1000px;
}

.slick-list {
    margin: 0 -8px;
}

.slick-slide {
    padding-left: 8px;
    padding-right: 8px;
}


/* Header */

.header {
    background: #101820;
    backdrop-filter: blur(4px);
    position: relative;
    z-index: 999;
}

.main-header {
    gap: 40px;
}

.main-menu {
    gap: 20px;
    flex: 1;
}

.main-menu>li>a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    min-width: 140px;
    text-align: center;
    margin: 0;
    line-height: 28px;
    padding: 20px 0;
    font-weight: 500;
    position: relative;
    text-transform: capitalize;
}

.main-menu>li>a::after {
    content: '';
    background: #20BB5B;
    position: absolute;
    width: 0;
    height: 4px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: .3s;
}

.main-menu>li>a:hover,
.main-menu>li>a:focus,
.main-menu>li.active>a {
    background-color: rgba(32, 187, 91, 0.15);
    color: #20BB5B;
}

.main-menu>li>a:hover::after,
.main-menu>li>a:focus::after,
.main-menu>li.active>a::after {
    width: 100%;
}

.form-control {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    padding: 12px;
    background: #1B2A38;
    border-color: #1B2A38;
    border-radius: 8px;
    color: #fff;
    margin-bottom: 24px;
}

.form-control:focus {
    box-shadow: none;
    background: rgba(32, 187, 91, 0.15) !important;
    border-color: #20BB5B !important;
    color: #fff !important;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #1B2A38;
}

.form-search {
    position: relative;
}

.form-search>ion-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #697780;
    font-size: 24px;
}

.form-search input {
    padding-left: 42px;
    width: 270px;
    max-width: 100%;
    margin: 0;
}

.i-filter {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    display: flex;
    padding: 6px;
    border-radius: 4px;
    background: rgba(32, 187, 91, 0.20);
}

a.toggle-formsearch {
    font-size: 32px;
    color: #fff;
}

.dark-mode {
    position: relative;
    width: 72px;
    height: 24px;
    background: rgba(32, 187, 91, 0.15);
    border-radius: 40px;
    cursor: pointer;
}

.dark-mode.on {
    background: #1B2A38;
}

.dark-mode .btn-switch {
    position: absolute;
    top: -5px;
    left: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #20BB5B;
    border-radius: 40px;
    color: #fff;
    border: 0;
    font-size: 16px;
    transition: .3s;
}

.dark-mode:not(.on) .btn-switch ion-icon[name="moon-outline"] {
    display: none;
}

.dark-mode.on .btn-switch {
    left: auto;
    right: 0;
    background-color: #20BB5B;
    color: #fff;
}

.dark-mode.on .btn-switch ion-icon[name="sunny-outline"] {
    display: none;
}

.nav-account {
    display: flex;
    align-items: center;
}

.nav-account .notifications {
    font-size: 20px;
    color: #20BB5B;
    margin-right: 35px;
}

.notifications ion-icon {
    width: 24px;
    height: 24px;
}

#menuAccount img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.dropdown-toggle {
    background: transparent;
    box-shadow: none;
    border: 0;
    padding: 0;
    color: #20BB5B;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    width: 200px;
    background: #101820;
    border: 1px solid rgba(32, 187, 91, 0.15);
    border-radius: 0px 0px 8px 8px;
    font-size: 14px;
    transform: none !important;
    inset: unset !important;
    top: 134% !important;
    left: 0 !important;
    min-width: unset;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #20BB5B;
    border-radius: 4px 4px 0px 0px;
}

.dropdown-menu::after {
    content: '';
    display: inline-block;
    border: 5px solid #20BB5B;
    border-bottom-color: transparent;
    border-left-color: transparent;
    position: absolute;
    top: -5px;
    left: 39%;
    transform: translateX(-50%) rotate(-45deg);
    transition: .2s;
}

.dropdown-item {
    color: #697780;
    padding: 12px 18px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #20BB5B !important;
    background: transparent;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: #1B2A38;
    color: #fff;
}

.dropdown-menu li.active a {
    color: #20BB5B;
    background: transparent;
}

.dropdown-item ion-icon {
    font-size: 16px;
}

.modal-dialog {
    width: 448px;
}

.modal-content {
    padding: 40px 32px;
    background: #101820;
    border-radius: 16px;
    border: 0;
}

.modal-header,
.modal-body {
    padding: 0;
}

.modal-header {
    text-align: center;
    display: block;
    border: 0;
}

.modal-header .btn-close {
    background: #1B2A38;
    border-radius: 0px 16px;
    padding: 0;
    margin: 0;
    width: 44px;
    height: 44px;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 1;
    font-size: 22px;
}

.btn-close:focus,
.btn-close:hover {
    box-shadow: none;
    color: #20BB5B;
}

.modal-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 24px;
}

.form-label {
    color: #697780;
    font-size: 12px;
    text-transform: uppercase;
}

.modal-body button[type="submit"] {
    display: block;
    width: 100%;
    box-shadow: 0px 0px 20px rgba(32, 187, 91, 0.15);
    line-height: 50px;
}

.modal-body form>div {
    position: relative;
}

.modal-body form .form-check {
    margin-bottom: 24px;
    padding: 0;
    align-items: center;
}

.checkbox {
    position: relative;
    padding-left: 26px;
}

.checkbox input[type=checkbox] {
    position: absolute;
    opacity: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    border: 0;
}

.checkbox ion-icon {
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.checkbox ion-icon[name="checkmark"],
.btn-spoil ion-icon[name="checkmark"] {
    background: #20BB5B;
    border-radius: 2px;
    color: #fff;
}

.form-check {
    display: flex;
    justify-content: space-between;
}

.back-form {
    margin: 24px 0 0 !important;
    font-size: 16px;
    font-weight: 500;
}

.back-form a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.reg-acc {
    margin-top: 24px;
    font-size: 16px;
    color: #D8D8D8;
}

.reg-acc a {
    font-weight: 600;
}

.btn-showoff {
    position: absolute;
    padding: 0;
    border: 0;
    background: transparent;
    right: 17px;
    bottom: 12px;
    display: flex;
    font-size: 24px;
    color: #697780;
}

.offcanvas {
    background-color: #101820;
    width: 240px;
}

.offcanvas-backdrop.show {
    opacity: 0.8;
}

.close-headercanvas,
#mobile_menu {
    font-size: 30px;
    color: #fff;
}

#mobile_menu {
    color: #fff !important;
}

.offcanvas-body {
    padding: 0;
}

.offcanvas-body .main-menu>li>a {
    text-align: left;
    padding: 16px;
}

.offcanvas-body .main-menu>li+li {
    border-top: 1px solid #3D4A56;
}

.search-result-wrapper {
    background: #101820;
    border: 1px solid rgba(32, 187, 91, 0.15);
    border-radius: 8px;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 50px;
    right: 0;
    z-index: 6;
    list-style: none;
    width: 100%;
    min-width: 330px;
}

.search-result-wrapper .result {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.search-result-wrapper .nav-item {
    border-radius: 8px;
    padding: 12px 16px;
}

.search-result-wrapper .nav-item:hover {
    background-color: #1B2A38;
}

.search-result-wrapper li img {
    height: 80px;
}

.search-result-wrapper .p-content {
    padding: 16px;
}

.search-result-wrapper .list-chaps li {
    padding: 0;
    margin: 0;
}

.search-result-wrapper .p-content .m-name a {
    font-size: 16px;
}

.search-result-wrapper .nav-bottom {
    background-color: #20BB5B !important;
    color: #fff;
    border-radius: 0 0 8px 8px;
    text-align: center;
    padding: 16px;
}

.search-result-wrapper .nav-bottom ion-icon {
    vertical-align: middle;
}


/* Body */

#main-content {
    padding-top: 32px;
}

body.homepage #main-content {
    padding-top: 0;
}

#main-content section {
    padding-bottom: 55px;
}

.ads img {
    border-radius: 8px;
}

.sl-wrapper {
    position: relative;
    overflow: hidden;
}

.sl-content {
    position: relative;
    display: block;
    color: #F1F1F1;
    height: 440px;
    -webkit-filter: blur(6px);
    -moz-filter: blur(6px);
    -o-filter: blur(6px);
    -ms-filter: blur(6px);
    filter: blur(6px);
}

.sl-content::after {
    content: '';
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    pointer-events: none;
}

.sl-info {
    max-width: 600px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 44px;
    color: #fff;
    z-index: 11;
}

.sl-wrapper .m-img {
    position: absolute;
    right: 180px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg) scale(1.2);
    padding: 6px;
    background: #fff;
    opacity: 0;
    transition: .2s;
}

.swiper-slide-active .sl-wrapper .m-img {
    transform: translateY(-50%) rotate(15deg) scale(1);
    opacity: 1;
}

.sl-info h3 {
    color: #fff;
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 8px;
    -webkit-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.sl-update {
    display: block;
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 500;
}

.sl-des p {
    font-weight: 400;
    margin-bottom: 16px;
    -webkit-line-clamp: 3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.sl-des .m-cats a {
    border-color: #fff;
    color: #fff !important;
    display: flex;
    gap: 4px;
}

.sl-des .m-cats a::before {
    content: '#';
    display: inline-block;
    vertical-align: middle;
}

.sl-des .m-cats a:hover,
.sl-des .m-cats a:focus {
    color: #000 !important;
}

.m-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.m-cats a {
    border: 1px solid #3D4A56;
    border-radius: 40px;
    color: #fff;
    font-size: 12px;
    line-height: 30px;
    padding: 0 16px;
    display: inline-block;
}

.m-cats a:hover,
.m-cats a:focus {
    background-color: #fff;
    color: #000;
}

.m-cats .cat::before {
    content: '# ';
}

.sl-bottom {
    margin-top: 32px;
    display: flex;
    gap: 24px;
}

.sl-bottom a {
    line-height: 42px;
    min-width: 120px;
    padding: 0 12px;
    display: inline-block;
}

.sl-bottom ion-icon {
    font-size: 0 !important;
    transition: .2s;
    vertical-align: middle;
}

.sl-bottom a:focus ion-icon,
.sl-bottom a:hover ion-icon {
    font-size: inherit !important;
    margin-right: 5px;
}

.swiper-navigation>div {
    width: 34px;
    height: 34px;
    background-color: #fff;
    font-size: 20px;
    line-height: 1;
    border-radius: 50%;
    z-index: 99;
    transition: .2s;
    transform: none;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 0;
}

.swiper-navigation {
    bottom: 44px;
    right: 44px;
    position: absolute;
    gap: 12px;
}

.swiper-navigation>div:hover {
    background-color: #20BB5B !important;
}

.swiper-navigation>div:hover ion-icon {
    color: #000;
}

.swiper-navigation ion-icon {
    vertical-align: middle;
    font-size: 24px;
    color: #130F26;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.multiple-items .swiper-navigation {
    top: 0;
    bottom: auto;
    right: 0;
}

.manga-basic {
    position: relative;
}

.bg-topmain {
    padding-top: 32px;
    position: relative;
}

.i-thumb {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.i-thumb>a {
    display: block;
}

.i-thumb img {
    transition: .2s;
}

.i-thumb:hover>a {
    filter: blur(3.75px);
    -webkit-filter: blur(3.75px);
}

.i-thumb:hover img {
    transform: scale(1.1);
}

.i-thumb:hover .rank {
    opacity: 0;
}

.i-thumb:hover .m-hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.65);
}

.i-thumb:hover>a::before {
    opacity: 1;
    filter: blur(3.75px);
    -webkit-filter: blur(3.75px);
}

.i-des {
    font-size: 14px;
    line-height: 20px;
    -webkit-line-clamp: 10;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.m-hover {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 12px;
    overflow: hidden;
    color: #E7E7E7;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: inherit;
    z-index: 99;
    opacity: 0;
    transition-delay: .1s;
    transition: .2s;
    pointer-events: none;
}

.rank {
    display: inline-block;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 8px 4px 6px;
    line-height: 18px;
    width: 36px;
    color: #000;
    text-align: center;
    font-weight: 500;
    transition-delay: .1s;
    transition: .2s;
}

.manga-basic .rank {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 999;
}

.rank::before {
    content: '#';
    display: block;
    transition: .2s;
}

.rank::after {
    content: '';
    display: inline-block;
    border: 3px solid #20BB5B;
    border-top-color: transparent;
    border-right-color: transparent;
    position: absolute;
    left: 4px;
    bottom: 4px;
    transition: .2s;
}

.title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: capitalize;
}

.m-title .sub {
    display: inline-block;
    position: relative;
}

.m-name {
    line-height: inherit;
    font-size: inherit;
    -webkit-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-transform: capitalize;
}

.m-name a {
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    font-weight: 700;
}

.m-name a:hover,
.m-name a:focus {
    color: #20BB5B;
}

#manga-comment {
    padding-top: 66px;
}

.banner-cmt {
    position: relative;
}

.banner-cmt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, #101820 0%, rgba(16, 24, 32, 0) 100%);
}

.banner-cmt img {
    margin-top: -77px;
}

.comment-wrapper {
    background: #1B2A38;
    border-radius: 8px;
    padding: 16px;
    transition: .2s;
}

.comment-wrapper:hover {
    background: #101B21;
}

.comment-wrapper:hover .cmt-profile img {
    border-color: #20BB5B;
}

.comment-wrapper>div+div {
    margin-top: 13px;
}

.cmt-manga a {
    -webkit-line-clamp: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.cmt-manga a ion-icon {
    vertical-align: middle;
}

.cmt-profile img {
    border: 5px solid #101B21;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: inline-block;
    vertical-align: top;
    margin-right: 12px;
    transition: .2s;
}

.cmt-meta {
    margin-top: 10px;
    display: inline-block;
}

.cmt-meta span {
    color: #fff;
    display: block;
}

.cmt-meta span.cmt-time {
    font-size: 12px;
    color: #DADADA;
}

.cmt-description {
    height: 100px;
    overflow: hidden;
}

.cmt-description p {
    margin: 0;
}

.cmt-manga a,
.chapter a {
    color: #20BB5B;
    display: flex;
    align-items: center;
    gap: 10px;
}

#list-manga .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 30px;
    line-height: 36px;
}

.list-manga {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.m-post {
    background: #1B2A38;
    transition: .2s;
    position: relative;
    overflow: hidden;
}

.m-post:hover {
    background-color: #101B21;
}

.m-post:hover img {
    transform: scale(1.1);
}

.p-thumb a {
    display: block;
    overflow: hidden;
    position: relative;
}

.m-post .p-thumb img {
    width: 130px;
    height: 220px;
    object-fit: cover;
    transition: .2s;
    display: block;
}

.m-post .p-thumb img.lazy {
    opacity: 0;
}

.lazy~.rank {
    display: none;
}

.m-post .p-thumb .lazy+.ph-img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 220px;
}

.p-content {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
}

.p-content .m-name {
    margin-bottom: 8px;
}

.p-content .m-name a {
    display: block;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.list-cats {
    -webkit-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.list-cats a {
    color: #B9B9B9;
    font-size: 12px;
    line-height: 20px;
    display: inline-block;
}

.list-cats a:not(:last-child)::after,
.kind a:not(:last-child)::after,
.author a:not(:last-child)::after {
    content: ', ';
}

.list-chaps {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.list-chaps li {
    margin-top: 8px;
    line-height: 20px;
}

.list-chaps li+li {
    padding-top: 8px;
    border-top: 1px solid #3D4A56;
}

.nav-tabs {
    background: #1B2A38;
    border-radius: 8px;
    margin-bottom: 24px;
    border: 0;
}

.nav-item {
    flex: 1;
}

.nav-tabs .nav-link {
    border: 0;
    border-radius: 8px;
    font-weight: 500;
    padding: 12px 24px;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    margin: 0;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #fff;
    background: #20BB5B;
}

#top-follow {
    padding-left: 20px;
}

.tab-content ul.list-unstyled>li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
    padding-right: 40px;
}

.tab-content ul.list-unstyled>li:hover {
    background: linear-gradient(90deg, rgba(32, 187, 91, 0.15) 0%, rgba(32, 187, 91, 0) 100%);
}

.tab-content ul.list-unstyled>li:hover .rank {
    background: #20BB5B;
    color: #fff !important;
}

.tab-content ul.list-unstyled>li:hover .rank::before {
    border-left-color: #fff;
    border-bottom-color: #fff;
}

.tab-content .p-thumb {
    position: relative;
}

.tab-content .rank {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    line-height: 22px;
    transition: .2s;
    width: auto;
    padding: 10px;
    background-color: #15212C;
    line-height: 20px;
    font-weight: 800;
    border-radius: 0;
    color: #fff;
}

.tab-content .rank::before,
.tab-content .rank::after {
    display: none;
}

.tab-content .p-thumb img,
.tab-content .p-thumb .lazy+.ph-img {
    width: 64px;
    height: 100px;
    object-fit: cover;
    display: block;
}

.tab-content .p-thumb img.lazy {
    opacity: 0;
}

.tab-content .p-thumb .lazy+.ph-img {
    position: absolute;
    top: 0;
    width: 100%;
}

.tab-content .p-content {
    padding: 0;
}

.tab-content .p-content .m-name a {
    font-size: 14px;
    line-height: 20px;
}

.tab-content .list-cats {
    margin-bottom: 5px;
    -webkit-line-clamp: 1;
}

.tab-content .list-cats a {
    color: #DADADA;
    font-size: 12px;
}

.genre-content {
    position: relative;
    color: #fff;
}

.genre-content .g-thumb {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.genre-content .g-thumb::after {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    mix-blend-mode: normal;
    opacity: 0.8;
    position: absolute;
    left: 0;
    top: 20px;
    transition: .2s;
}

.genre-content img {
    opacity: 0.7;
    transition: .3s;
    width: 100%;
}

.genre-content .g-des {
    position: absolute;
    top: 0;
    transition: .2s;
    display: flex;
    padding: 24px 16px;
    opacity: 0;
    z-index: 9;
}

.g-name {
    font-size: 20px;
    line-height: 28px;
    z-index: 222;
    position: absolute;
    bottom: 0;
    padding: 32px 16px;
    margin: 0;
}

.g-name a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.g-name a:hover,
.g-name a:focus {
    color: #20BB5B;
}

.g-name ion-icon {
    font-size: 12px;
}

.genre-content:hover .g-thumb::after {
    top: 0;
}

.genre-content:hover img {
    transform: scale(1.1);
}

.genre-content:hover .g-des {
    top: 0;
    opacity: 1;
}

.other-genres {
    padding-top: 25px;
}

.other-genres h4 {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #DADADA;
    margin-bottom: 28px;
}

.other-genres .m-cats a {
    border-color: #3D4A56;
}

.other-genres .m-cats a.active {
    border-color: #3D4A56;
    background: #fff;
    color: #000;
}

#manga-suggest .i-thumb img {
    width: 100%;
    margin: 0;
}

#manga-suggest .i-des {
    left: 0;
}

.breadcrumb {
    margin-bottom: 24px;
    gap: 7px;
    font-weight: 400;
}

.itemcrumb {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    gap: 5px;
}

.itemcrumb a {
    color: #20BB5B;
}

.itemcrumb.active,
.itemcrumb.active a {
    color: #697780;
}

.m-sort {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 20px;
    font-weight: normal;
    background: #1B2A38;
    border-radius: 8px;
    padding: 14px 16px;
    position: relative;
}

.m-sort .SumoSelect>.CaptionCont {
    padding: 0;
    border: 0;
    color: #fff;
}

.m-sort .SumoSelect>.CaptionCont>label {
    right: -15px;
}

.m-sort .SumoSelect>.optWrapper>.options {
    width: 100%;
    border: 1px solid #3D4A56;
    background: #1B2A38;
    border-radius: 8px;
    overflow: hidden;
}

.m-sort .SumoSelect>.optWrapper>.options::before,
.m-sort .SumoSelect>.optWrapper>.options::after {
    display: none;
}

.m-sort .SumoSelect {
    position: static;
    width: auto;
    flex: 1;
}

.m-sort .SumoSelect.open>.optWrapper {
    top: 105%;
    width: 100%;
}

.m-sort .SumoSelect>.optWrapper>.options li.opt:hover {
    background: #101820;
}

.SumoSelect {
    width: auto;
}

.SumoSelect>.CaptionCont {
    background: transparent;
    border-color: transparent;
    box-shadow: none !important;
    color: #20BB5B;
}

.SumoSelect>.CaptionCont>label {
    display: flex;
    align-items: center;
    font-size: 20px;
    width: 35px;
}

.SumoSelect>.optWrapper {
    width: auto;
    box-shadow: none;
    background: transparent;
    border: 0;
    overflow: unset;
    left: auto;
    right: 0;
}

.SumoSelect>.optWrapper>.options {
    width: 200px;
    background: #101820;
    border: 1px solid rgba(32, 187, 91, 0.15);
    border-radius: 0px 0px 8px 8px;
    font-size: 14px;
    padding: 8px 0;
    overflow: hidden;
    overflow-y: scroll;
}

.SumoSelect>.optWrapper>.options::before {
    content: '';
    display: inline-block;
    border: 5px solid #20BB5B;
    border-bottom-color: transparent;
    border-left-color: transparent;
    position: absolute;
    top: -5px;
    left: 54%;
    transform: translateX(-50%) rotate(-45deg);
    transition: .2s;
}

.SumoSelect>.optWrapper>.options::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #20BB5B;
    border-radius: 4px 4px 0px 0px;
}

.SumoSelect>.optWrapper>.options li.opt {
    padding: 12px 16px;
    border: 0;
    color: #697780;
    border-radius: 0 !important;
}

.SumoSelect>.optWrapper>.options li.opt.selected {
    color: #20BB5B !important;
}

.SumoSelect>.optWrapper>.options li.opt:hover {
    background: #1B2A38;
    color: #fff;
}

ul.pagination {
    padding: 40px 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.pagination li a {
    width: 36px;
    line-height: 36px;
    background: #1B2A38;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    display: block;
    text-align: center;
}

.pagination li a:hover,
.pagination li.active a {
    background: #20BB5B;
}

#list-genres {
    padding-top: 0;
}

#manga-detail .other-genres {
    padding-top: 0;
}


/* Footer */

#footer {
    padding: 75px 0;
    background: #101820;
}

.f-left {
    align-items: center;
    color: #fff;
    gap: 40px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    gap: 24px;
}

.social-link a {
    color: #fff;
    font-size: 32px;
    display: flex;
}

.social-link a:hover {
    color: #20BB5B;
}

.copyright {
    margin: 0;
}

.f-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: max-content;
}

.f-menu a {
    color: #fff;
}

.f-menu a:hover,
.f-menu li.active a {
    color: #20BB5B;
}


/* Manga Detail */

.main-info {
    background: #1B2A38;
    border-radius: 16px;
    padding: 50px 30px;
    margin-bottom: 24px;
}

.col-image {
    margin-right: 26px;
}

.col-image img {
    border-radius: 8px;
    overflow: hidden;
}

.col-main-info {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.title-detail {
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    margin: 0;
}

.read-action {
    display: flex;
    gap: 16px;
}

.read-action>a {
    padding: 0 20px;
}

.read-action .manga-save {
    background: #101820;
    border-radius: 8px;
    width: 46px;
    line-height: 44px;
    padding: 0;
    text-align: center;
}

.read-action ion-icon {
    font-size: 16px;
    vertical-align: middle;
    color: #fff;
}

.manga-save.active ion-icon {
    color: #FAD306;
}

.sort-des {
    max-width: 520px;
}

.sort-des>p {
    -webkit-line-clamp: 3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.m-share {
    display: flex;
    gap: 16px;
}

.m-share a {
    line-height: 40px;
    background-color: #4267B2;
    border: 0;
    padding: 0 20px;
    box-shadow: none !important;
}

.m-share a.share-tw {
    background-color: #08C;
}

.list-info li {
    color: #DADADA;
}

.list-info li+li {
    margin-top: 11px;
    ;
}

.list-info span {
    display: inline-block;
}

.list-info a,
.list-info p {
    color: #fff;
    font-weight: 400;
}

.list-info a:hover {
    color: #20BB5B;
}

.list-info p {
    display: inline-block;
    margin: 0;
}

.detail-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating {
    margin-top: 40px;
    border-left: 2px solid #20BB5B;
    border-radius: 8px;
    padding: 5px 16px;
}

.vote-rate {
    text-align: left;
}

.average-rating {
    display: flex;
    gap: 8px;
    align-items: baseline;
    font-size: 12px;
    margin-bottom: 16px;
}

.average-rating ion-icon {
    color: #20BB5B;
    border-radius: 1px;
    font-size: 16px;
}

.average-rating span {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.average-rating a {
    color: #DADADA;
}

.vote-rate p {
    margin-bottom: 8px;
}

.vote-rate .options {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.options a {
    background: #101820;
    border-radius: 8px;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 10px;
    color: #fff;
    gap: 10px;
    border: 1px solid transparent;
}

.options a:hover,
.options a.select {
    background: rgba(32, 187, 91, 0.15) !important;
    border-color: #20BB5B;
}

.options a img {
    max-width: max-content;
}

#vote_noti {
    display: inline-flex;
    padding: 8px 16px;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: var(--dark-brand, #20BB5B);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    position: fixed;
    right: 32px;
    bottom: 32px;
    color: #fff;
}

#vote_noti p {
    margin: 0;
}

#vote_noti ion-icon {
    font-size: 32px;
}

.list-chapters {
    position: relative;
    margin-bottom: 50px;
}

.top-list {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
}

#search-chapter input {
    padding-top: 8px;
    padding-bottom: 8px;
}

.list-chapters .nav-tabs {
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid #20BB5B;
    border-radius: 0;
    overflow: hidden;
    margin: 0;
    display: block;
    clear: both;
}

.list-chapters .nav-item {
    float: left;
    overflow: hidden;
}

.list-chapters .nav-item:first-child {
    border-radius: 8px 0 0 0;
}

.list-chapters .nav-item:last-child {
    border-radius: 0 8px 0 0;
}

.list-chapters .nav-tabs .nav-link {
    border: 0;
    color: #697780;
    border-radius: 0;
}

.list-chapters .nav-tabs .nav-item.show .nav-link,
.list-chapters .nav-tabs .nav-link.active,
.list-chapters .nav-tabs .nav-link:focus,
.list-chapters .nav-tabs .nav-link:hover {
    background: #20BB5B;
    color: #fff;
}

.list-chapter {
    overflow: hidden;
    overflow-y: scroll;
    max-height: 660px;
}

#listChap .list-chapter {
    background: #1B2A38;
    border-radius: 0px 0px 16px 16px;
}

#listChap .list-chapter>li {
    margin: 0;
    padding: 0 24px;
    display: block;
}

#listChap .list-chapter>li+li a {
    border-top: 1px solid #3D4A56;
}

#listChap .list-chapter>li a {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #fff;
    padding: 20px 0;
}

#listChap .list-chapter>li a ion-icon {
    font-size: 16px;
}

#listChap .list-chapter>li:hover {
    background: rgba(32, 187, 91, 0.15);
}

.list-vol {
    padding-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 16px;
}

.list-vol a {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: block;
}

.list-vol a img {
    transition: .2s;
}

.list-vol a:hover img,
.list-vol a:focus img {
    transform: scale(1.1);
}

.list-vol a span {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    background: #20BB5B;
    padding: 12px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

.list-all-comments {
    padding-bottom: 30px;
}

.list-all-comments .offcanvas-header {
    padding: 0 0 40px;
}

.for-you .tab-content ul.list-unstyled>li {
    margin-left: 0;
}

.alphabet-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.alphabet-list a {
    background: #1B2A38;
    border: 1px solid transparent;
    border-radius: 8px;
    width: 48px;
    font-size: 12px;
    line-height: 20px;
    padding: 8px 0;
    display: block;
    text-align: center;
    color: #fff;
}

.alphabet-list a:hover,
.alphabet-list .active a {
    background: rgba(32, 187, 91, 0.15) !important;
    border-color: #20BB5B !important;
    color: #20BB5B !important;
}


/* Account page */

.user-page {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 50px;
}

.avatar-user {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#changeAvatar {
    position: absolute;
    width: 100%;
    left: 0;
    text-indent: -9999px;
    cursor: pointer;
}

.info-user .form-control {
    width: 390px;
}

.change-pass {
    margin-bottom: 24px;
}

.change-pass a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.info-user button[type="submit"] {
    width: 100%;
    line-height: 50px;
    display: block;
}

.user-sidelink li a {
    padding: 13px 16px;
    padding-left: 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    background: #1B2A38;
    border-radius: 8px;
    border: 1px solid transparent;
    color: #697780;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 400;
}

.user-sidelink li a ion-icon {
    font-size: 24px;
}

.user-sidelink li a:hover,
.user-sidelink li.active a {
    background: rgba(32, 187, 91, 0.15) !important;
    border-color: #20BB5B !important;
    color: #20BB5B !important;
}

#change-pass-form {
    transition: .2s;
}

#change-pass-form>div {
    position: relative;
}

.btn-cancel {
    margin-bottom: 8px;
}

.m-del {
    position: absolute;
    right: 7px;
    top: 7px;
    background-color: transparent;
    font-size: 24px;
    color: #697780;
    padding: 0;
    border: 0;
}

.m-del:hover {
    color: #20BB5B;
}

#continue-read .chapter a {
    padding: 10px 25px;
    background: rgba(32, 187, 91, 0.15);
    border-radius: 8px;
    color: #20BB5B;
    display: block;
    text-align: center;
    font-weight: 400;
}

#continue-read .m-post {
    padding: 16px;
}

#continue-read .p-content {
    padding: 0 0 0 24px;
}

#continue-read .p-thumb img {
    width: 96px;
    height: auto;
}

#continue-read .p-content .m-name {
    margin-right: 30px;
}

#manga-save {
    display: block;
}

#manga-save .alphabet-list {
    margin: 0;
}

#manga-save .list-manga {
    margin-top: 24px;
}

.optionManga {
    position: absolute;
    top: 9px;
    right: 6px;
}

.optionManga .dropdown-toggle {
    font-size: 24px;
    color: #697780;
}

.optionManga .dropdown-toggle:hover,
.optionManga .dropdown-toggle.show {
    color: #20BB5B;
}

.optionManga .dropdown-menu {
    width: 180px;
    border-radius: 8px;
    top: 100% !important;
    left: 5px !important;
}

.optionManga .dropdown-menu::before,
.optionManga .dropdown-menu::after {
    display: none;
}

.optionManga .dropdown-item {
    justify-content: space-between;
}

.optionManga .dropdown-item ion-icon {
    display: none;
}

.optionManga li.active .dropdown-item ion-icon {
    display: block;
}

.filter-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-list .suggest-list a {
    background: #3D4A56;
    border-radius: 40px;
    padding: 6px 8px;
    font-size: 12px;
    color: #fff;
    display: block;
}

.filter-list .suggest-list a:hover {
    background: rgba(32, 187, 91, 0.15);
}

.filter-list .status {
    margin-bottom: 40px;
}

.status ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
}

.status ul a {
    padding: 7px 8px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: #1B2A38;
    display: block;
    color: #fff;
}

.status ul a.active,
.status ul a:hover {
    background: rgba(32, 187, 91, 0.15);
    border-color: #20BB5B;
}

.fil-genres .form-search input {
    width: 100%;
}

#form-search-genres {
    margin-bottom: 16px;
}

.top-result {
    margin-bottom: 40px;
}

.num-result {
    margin-bottom: 16px;
}

.sort-list {
    flex-wrap: wrap;
    gap: 16px;
}

.sort-list a {
    background: #1B2A38;
    border-radius: 8px;
    padding: 7px;
    border: 1px solid transparent;
    color: #fff;
    min-width: 120px;
    text-align: center;
    font-weight: 400;
}

.sort-list a:hover,
.sort-list a.active {
    background: rgba(32, 187, 91, 0.15) !important;
    border-color: #20BB5B !important;
    color: #20BB5B !important;
}

.filter-list ul.search-result {
    gap: 24px;
}

.search-result a {
    font-weight: 700;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    margin-bottom: 12px;
}

.search-result a span {
    display: flex;
}

.search-result p {
    margin: 0;
}

.search-result a ion-icon {
    font-size: 24px;
    color: #697780;
}

.search-result a ion-icon:hover {
    color: #20BB5B;
}

.search-select {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.search-list {
    padding-top: 35px;
    padding-bottom: 40px;
}

.search-list .m-cats {
    display: block;
}

.search-list .label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #697780;
    margin-bottom: 16px;
    font-weight: 400;
}

.search-select .SumoSelect {
    width: 100%;
    font-weight: 400;
}

.search-select .SumoSelect>.CaptionCont {
    background: #1B2A38;
    border-radius: 8px;
    padding: 14px 16px;
    color: #fff;
}

.search-select .SumoSelect>.optWrapper>.options,
.search-select .SumoSelect>.optWrapper {
    width: 100%;
}

.search-select .SumoSelect.open>.optWrapper {
    top: 54px;
}

.search-select .SumoSelect>.optWrapper>.options {
    border-radius: 8px;
    text-align: left;
    overflow: hidden;
}

.search-select .SumoSelect>.optWrapper>.options::before,
.search-select .SumoSelect>.optWrapper>.options::after {
    display: none;
}

.search-select .SumoSelect.open>.CaptionCont,
.search-select .SumoSelect:hover>.CaptionCont {
    background: rgba(32, 187, 91, 0.15);
    border-color: #20BB5B;
}

.search-genres ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-list button {
    padding: 0 20px;
    margin-top: 40px;
    box-shadow: 0px 0px 20px rgba(32, 187, 91, 0.15);
    line-height: 48px;
}

#search-result .top-result {
    margin-bottom: 24px;
}

#search-result .list-manga {
    grid-template-columns: 1fr 1fr 1fr;
}


/* Reading Manga page */

body.reading-page {
    background-color: #000;
}

.reading-header {
    background-color: #101820;
    padding: 24px 16px;
}

.reading-page #main-content {
    padding: 0;
}

.reading-header button {
    background: transparent;
    font-size: 24px;
    color: #DADADA;
    border: 0;
    padding: 0;
}

.reading-header #back-button {
    font-size: 18px;
}

.manga-name {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin: 3px 0 30px;
}

.r-navigation .search-select {
    width: 100%;
    display: block;
    margin-bottom: 16px;
}

.r-navigation .search-select .SumoSelect>.CaptionCont {
    padding: 7px 16px;
    border: 0;
}

.navi-chap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.navi-chap button {
    background: #1B2A38;
    border-radius: 8px;
    text-align: center;
    padding: 5px;
    border: 0;
}

.navi.disabled {
    cursor: not-allowed;
    opacity: .35;
}

.search-select .dropdown-toggle {
    background: #1B2A38;
    border-radius: 8px;
    font-size: 14px;
    padding: 7px 16px;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    color: #fff;
    border: 1px solid transparent;
    gap: 8px;
}

.search-select .dropdown-menu {
    width: 100%;
    max-height: 440px;
    overflow: hidden;
    overflow-y: scroll;
    border: 0;
    top: 105% !important;
    background: #1B2A38;
    border-radius: 8px;
}

.type-select .dropdown-menu {
    overflow: hidden;
}

.search-select .dropdown-menu::before {
    display: none;
}

#form-search-chap {
    box-shadow: 0 10px 10px rgba(0, 0, 0, .15);
}

#form-search-chap input {
    width: 100%;
}

.bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bottom a {
    color: #fff;
    gap: 8px;
    align-items: center;
    font-weight: 400;
}

.bottom .icon {
    background: #1B2A38;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.r-comment .icon {
    color: #20BB5B;
}

.bottom .icon ion-icon {
    font-size: inherit;
}

.num-cmt {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}

.reading-header button.toggle-view {
    background: #FFFFFF;
    border-radius: 33px;
    width: 48px;
    height: 48px;
    color: #000;
    margin-top: 8px;
}

.main-images {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
}

.read_tool {
    background-color: #101820;
    padding: 12px 40px;
    opacity: 0;
    top: -56px;
    position: relative;
    pointer-events: none;
}

.read_tool.show {
    top: 0;
    opacity: 1;
    pointer-events: all;
}

.setting-select {
    color: #fff;
    gap: 32px;
    font-weight: 400;
}

.setting-select .dropdown-toggle ion-icon {
    font-size: 14px;
    color: #fff;
    vertical-align: middle;
    margin-left: 5px;
}

.SumoSelect>.CaptionCont:focus-visible {
    outline: unset;
}

.SumoSelect.open>.CaptionCont,
.SumoSelect:focus>.CaptionCont,
.SumoSelect:hover>.CaptionCont {
    border-color: transparent;
}

.close-setting {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 400;
}

.close-setting ion-icon {
    font-size: 20px;
}

.setting-select .SumoSelect>.optWrapper>.options {
    overflow: hidden;
}

.tool-setting {
    position: fixed;
    top: 0;
    left: 232px;
    right: 0;
    z-index: 999;
    pointer-events: none;
}

.offcanvas-end {
    width: 550px;
    background: #101820;
    padding: 24px;
    gap: 40px;
}

.offcanvas-end>div {
    padding: 0;
}

.offcanvas-header .title {
    gap: 20px;
    display: flex;
    align-items: center;
    margin: 0;
}

#dropdownSort {
    color: #fff;
}

.offcanvas-header .title button {
    padding: 0;
    font-size: 24px;
    color: #fff;
    border: 0;
    background: transparent;
}

.offcanvas-header h5 {
    margin: 0;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
}

#content-comments {
    font-weight: 400;
}

.sort-comments .btn:hover,
.sort-comments .btn:focus {
    box-shadow: none;
}

.sort-comments .dropdown-menu,
.btn-report .dropdown-menu {
    left: unset !important;
    right: 0 !important;
    width: auto;
    min-width: unset;
}

.comment-input {
    gap: 12px;
}

.user-avatar-img {
    width: 60px;
    height: 60px;
    border: 5px solid transparent;
    border-radius: 50%;
}

.comment-form {
    margin-top: 8px;
    margin-bottom: 40px;
}

textarea.form-control {
    background: #1B2A38;
    min-height: 110px;
    margin-bottom: 8px;
}

.list-comments {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cmt-line {
    gap: 12px;
    font-weight: 400;
    flex-wrap: wrap;
}

.cmt-line .info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-basis: calc(33.33% - 10px);
}

.ihead .time {
    display: inline-block;
    color: #697780;
}

.ihead .link-cmt-chap {
    display: inline-block;
    border-radius: 8px;
    padding: 4px 8px;
    background-color: rgba(32, 187, 91, 0.15);
    color: rgba(32, 187, 91, 0.9);
    margin-left: 5px;
}

.time {
    color: #697780;
}

.ibody p {
    margin: 0;
}

.ibottom {
    display: flex;
    gap: 24px;
    align-items: center;
}

.ibottom ion-icon {
    font-size: 16px;
}

.ibottom a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ci-buttons {
    display: flex;
}

.btn-spoil {
    color: #fff !important;
    display: flex;
    gap: 4px;
    align-items: center;
}

.btn-spoil ion-icon {
    font-size: 20px;
}

.btn-close-cmt {
    color: #fff;
    margin-right: 16px;
}

.cmt-line .replies {
    width: 100%;
    margin-left: 72px;
}

.replies .tag-name {
    color: #fff;
}

.replies-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rep-more a[aria-expanded="true"] {
    margin-bottom: 15px;
}

.rep-more a {
    display: flex;
    color: #20BB5B;
    gap: 8px;
    align-items: center;
}

.replies .rep-more {
    margin: 0;
}

.replies .rep-more a span::before {
    content: 'Xem ';
}

.ib-show-cmtspoil {
    display: none;
}

.spoiler-visible {
    filter: blur(0.25em);
}

.spoil .ib-show-cmtspoil {
    display: block;
}

.reading-header .optionManga {
    position: relative;
    top: unset;
    right: unset;
}

.reading-header .optionManga .dropdown-toggle {
    color: #fff;
    font-size: inherit;
}

.navi-chap.bottom {
    flex-direction: row;
    justify-content: space-between;
    background: #101820;
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 32px;
}

.navi-chap.bottom button {
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
}

.navi-chap.bottom button ion-icon {
    font-size: 20px;
    vertical-align: middle;
}

.reading-page .rating {
    max-width: max-content;
    margin: 0 auto 40px;
    background: #101820;
    padding: 16px;
    border: 0;
    border-top: 2px solid #20BB5B;
}

.reading-page .options a {
    padding: 10px 22px;
    background-color: #1B2A38;
}

.style-horizontal {
    position: relative;
    height: 100vh;
}

.style-horizontal .container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 !important;
    padding: 0;
    width: 100%;
    max-width: none;
}

.style-horizontal .main-images {
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin: 0 !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 52px;
    top: 0;
}

.style-horizontal .main-images .mi-item:not(.active) {
    display: none;
}

.style-horizontal .main-images .loaded {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: calc(50% - 5px);
    margin: 0;
}

.style-horizontal .main-images .loaded.i-left {
    right: auto;
}

.style-horizontal .main-images .loaded.i-right {
    right: 0;
    left: auto;
}

.style-horizontal .main-images .loaded img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: contain;
    z-index: 2;
    object-position: center right;
}

.style-horizontal .main-images .loaded.i-right img {
    object-position: center left;
}

.style-horizontal .main-images .i-left::before {
    content: '';
    background: linear-gradient(90deg, rgba(17, 17, 17, 0) 0, rgba(17, 17, 17, .4) 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 3%;
    z-index: 9;
}

.style-horizontal .main-images .i-right::before {
    content: "";
    background: linear-gradient(90deg, rgba(17, 17, 17, .4) 0, rgba(17, 17, 17, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5%;
    z-index: 9;
}

.style-horizontal.single .main-images .loaded::before,
.style-horizontal .main-images .loaded::after,
.style-horizontal .main-images .loaded:only-child::before,
.style-horizontal .main-images .loaded:only-child::after {
    display: none;
}

.navi-chap.bottom.hoz-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    margin: 0;
}

.hoz-controls .main-button {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.style-horizontal.single .main-images .loaded,
.style-horizontal .main-images .loaded:only-child {
    left: 50%;
    transform: translateX(-50%);
}

.style-horizontal.single .main-images .loaded img,
.style-horizontal .main-images .loaded:only-child img {
    object-position: center;
}

.navi-chap.hoz-controls button {
    padding: 0;
    background: transparent;
}

.navi-chap.hoz-controls button ion-icon {
    color: #20BB5B;
}

.navi-chap.hoz-controls button.disabled {
    opacity: 0.2;
    pointer-events: none;
}

.nabu-page {
    font-size: 20px;
    font-weight: 500;
    color: #697780;
}

.nabu-fill {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
}

.nabu-fill .nf-item {
    width: 32px;
    text-align: center;
    position: relative;
    height: 24px;
    padding: 0 0 10px;
    float: left;
    cursor: pointer;
}

.nabu-fill .nf-item span {
    display: inline-block;
    margin: 0 1px;
    height: 14px;
    background: #333;
}

.nabu-fill .nf-item.nf-single span {
    width: 10px;
    border-radius: 2px;
}

.nabu-fill .nf-item.active span {
    background: #666 !important;
}

.nabu-fill .nf-item.nf-double span {
    width: 8px;
    border-radius: 2px 0 0 2px;
}

.nabu-fill .nf-item.nf-double span:nth-child(2) {
    border-radius: 0 2px 2px 0;
    opacity: .8;
}

.nabu-fill .nf-item.active::before {
    content: "";
    width: 18px;
    height: 2px;
    background: #20BB5B;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.main-images .sc-btn {
    padding: 40px 28px;
    padding-left: 0;
    border-right: 3px solid #20BB5B;
    border-radius: 0;
    text-align: right;
    position: absolute;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    z-index: 106;
    max-width: 282px;
}

.sc-btn .block {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.sc-btn .block .name-chapt {
    font-size: 14px;
    font-weight: 400;
    color: #DADADA;
    margin-top: 5px;
}


/* Other Pages */

.heading {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.article-infor .h4-heading {
    font-size: 1.3em;
    line-height: 1.6em;
    margin-bottom: 10px;
}

.article-infor a {
    color: #20BB5B;
}

.article-infor .social-link a {
    font-size: 40px;
}

.article-infor a.fb {
    color: #1877F2;
}

.article-infor a.discord {
    color: #7289DA;
}

.article-infor a.twitter {
    color: #1DA1F2;
}

.article-infor a.tele {
    color: #26A4E3;
}

.details {
    min-height: calc(100vh - 400px);
}


/* Light Mode */

body.lightmode {
    background: #F8F8FA;
}

body.lightmode .banner-cmt::before {
    background: linear-gradient(0deg, #F8F8FA 0%, rgba(255, 255, 255, 0) 100%);
}

body.lightmode,
.lightmode .m-name a,
.lightmode .cmt-meta span,
.lightmode .other-genres h4,
.lightmode .m-cats a,
.lightmode .m-sort .SumoSelect>.CaptionCont,
.lightmode .dropdown-item,
.lightmode .SumoSelect>.optWrapper>.options li.opt,
.lightmode .pagination li a,
.lightmode .list-info a,
.lightmode .list-info p,
.lightmode .read-action .optionManga .manga-save,
.lightmode .average-rating span,
.lightmode #listChap ul.list-unstyled>li a,
.lightmode .offcanvas .main-menu>li>a,
.lightmode .close-headercanvas,
.lightmode #mobile_menu,
.lightmode .list-all-comments .ibottom a,
.lightmode .list-all-comments .btn-close-cmt,
.lightmode .list-all-comments #dropdownSort,
.lightmode .list-all-comments .replies .tag-name,
.lightmode .ibottom a,
.lightmode .reg-acc,
.lightmode #listChap .list-chapter>li a {
    color: #171817;
}

.lightmode .cmt-meta span.cmt-time,
.lightmode .list-cats a,
.lightmode .nav-tabs .nav-link,
.lightmode .list-info li,
.lightmode .average-rating a {
    color: #525755;
}

.lightmode .cmt-profile img {
    border-color: #fff;
}

.lightmode .comment-wrapper,
.lightmode .m-post,
.lightmode .m-sort,
.lightmode .dropdown-menu,
.lightmode .m-sort .SumoSelect>.optWrapper>.options,
.lightmode .pagination li a,
.lightmode #listChap ul.list-unstyled,
.lightmode .SumoSelect>.optWrapper>.options,
.lightmode .search-result-wrapper .nav-item:hover,
.lightmode .rating,
.lightmode .main-info {
    background: #fff;
}

.lightmode .list-chaps li+li,
.lightmode .other-genres .m-cats a,
.lightmode .dropdown-menu,
.lightmode .m-sort .SumoSelect>.optWrapper>.options,
.lightmode .m-cats a,
.lightmode #listChap ul.list-unstyled>li+li a,
.lightmode .offcanvas-body .main-menu>li+li {
    border-color: #ddd;
}

.lightmode .search-genres a,
.lightmode .other-genres .m-cats a {
    border-color: #3D4A56;
}

.lightmode .other-genres .m-cats a:hover,
.lightmode .other-genres .m-cats a.active,
.lightmode #listChap .list-chapter>li a {
    border-color: #ddd;
}

.lightmode .nav-tabs {
    background: #eee;
    border-color: transparent;
}

.lightmode .nav-tabs .nav-item.show .nav-link,
.lightmode .nav-tabs .nav-link.active,
.lightmode .nav-tabs .nav-link:focus,
.lightmode .nav-tabs .nav-link:hover,
.lightmode .pagination li a:hover,
.lightmode .pagination li.active a {
    background-color: #20BB5B;
    border-color: #20BB5B;
    color: #fff;
}

.lightmode .dropdown-item:hover,
.lightmode .m-sort .SumoSelect>.optWrapper>.options li.opt:hover,
.lightmode .read-action .manga-save,
.lightmode .modal-content,
.lightmode .SumoSelect>.optWrapper>.options li.opt:hover,
.lightmode .offcanvas {
    background: #F8F8FA;
}

.lightmode .options a {
    background: #F8F8FA;
    color: #171817;
}

.lightmode .list-chapters .nav-tabs {
    background: transparent;
    border-color: #20BB5B;
}

.lightmode #search-chapter input,
.lightmode .modal-header .btn-close,
.lightmode .form-control,
.lightmode .search-select .SumoSelect>.CaptionCont,
.lightmode .sort-list a,
.lightmode .user-sidelink li a,
.lightmode .alphabet-list a {
    background-color: #fff;
    border-color: transparent;
    color: #171817;
}

.lightmode ::-webkit-scrollbar-thumb {
    background-color: #eee;
}

.lightmode .search-result-wrapper {
    background: #eee;
    border: 0;
}

.lightmode .form-control:focus,
.lightmode .list-all-comments .btn-spoil,
.lightmode .btn-spoil {
    color: #171817 !important;
}

.lightmode .m-hover,
.lightmode .tab-content .rank {
    color: #171817;
}

.lightmode .i-thumb:hover .m-hover {
    background-color: rgba(234, 234, 234, 0.65);
}

.lightmode .tab-content .rank {
    background-color: #F0F0F0;
}

.lightmode .tab-content .rank.color {
    background: rgba(32, 187, 91, 0.10);
}

.lightmode .bg-topmain::after {
    content: '';
    background-color: #1B2A38;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 420px;
    pointer-events: none;
}

.lightmode .read-action ion-icon {
    color: #171817 !important;
}

.lightmode #listChap .list-chapter {
    background: #fff;
}


/* Preload block */

.loading-relative {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 50px;
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading>div {
    width: 18px;
    height: 18px;
    background-color: #20BB5B;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.loading .span1 {
    -webkit-animation-delay: -.32s;
    animation-delay: -.32s;
}

.loading .span2 {
    -webkit-animation-delay: -.16s;
    animation-delay: -.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%,
    100%,
    80% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1)
    }
}

@keyframes sk-bouncedelay {
    0%,
    100%,
    80% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}


/* Load reading images */

.mi-item .loaded {
    position: relative;
}

.card-loading .c-l-area {
    position: absolute;
    text-align: center;
    z-index: 1;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 400px;
    color: #999;
}

.paper-loading {
    width: 40px;
    height: 40px;
    background-color: #243A4F;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px 0 10px 0;
    box-shadow: 0 5px 5px rgba(0, 0, 0, .2);
}

.paper-loading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    animation: paper-loading 1s infinite;
    background: linear-gradient(270deg, #243A4F 0, #243A4F 73%);
    z-index: 3;
    transform-origin: left center;
}

.paper-loading::after {
    content: "M";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 14px;
    font-weight: 700;
    color: #8a8a8a;
    background: #2F4E6A;
    line-height: 40px;
    text-align: center;
    width: 100%;
    opacity: 0;
    animation: m-loading 1s infinite;
}

.lightmode .paper-loading {
    background-color: #e9ecef;
}

.lightmode .paper-loading::before {
    background: linear-gradient(270deg, #dee2e6 0, #e9ecef 73%);
}

.lightmode .paper-loading::after {
    background: #dadada;
}

.swiper .lazy+.ph-img svg {
    display: block;
}

.swiper .lazy+.ph-img svg rect {
    fill: #1B2A38;
}

.lightmode .swiper .lazy+.ph-img svg rect {
    fill: #fff;
}

@keyframes paper-loading {
    0% {
        transform: scale(1, 1)
    }
    100% {
        transform: scale(.001, 1)
    }
}

@keyframes m-loading {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.ph-img {
    display: none;
}

.lazy+.ph-img {
    display: block;
    position: relative;
}

.lazy+.ph-img svg {
    display: none;
}