/*
 @Author: RAMSThemes
 @URL: https://www.templatemonster.com/vendors/ramsthemes/ 
 This file contains the styling for the actual theme, this
 is the file you need to edit to change the look of the
 theme. 
*/

/*----------------------------------------------------------------------
TABLE OF CONTENTS:
------------------------------------------------------------------------
1. BASE STYLES
2. FADE EFFECT ON PAGE LOAD
3. PACE LOAD BAR
4. NAVBAR
5. SIDE NAV MENU
6. LOGO
7. LAYOUT
8. FLICKITY SLIDER
9. CATEGORIES AND TAGS LIST
10. SINGLE STYLES 
11. WORDPRESS GENERAL STYLES
12. WORDPRESS PAGED NAVIGATION
13. WORDPRESS WIDGETS STYLES
14. GALLERY STYLES
15. CONTACT FORM 7 STYLES
16. SWITCH FOR ENABLE-DISABLE NORMAL AND DARK MODE
17. EXTRAS
18. RESPONSIVE STYLES
------------------------------------------------------------------------*/

/*----------------------- 1. BASE STYLES ------------------------------ */

/* GENERAL STYLES
----------------- */

body {
	font-family: 'IBM Plex Sans', sans-serif;
    font-size: .875rem;
    width: 100%;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.65;	
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	
	body { 
		overflow-x: hidden;
	}
	
}

body a:hover {
    text-decoration: none;
}

button:focus, select:focus {
    outline: 0;
}

input {
    outline: none;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button {
    display: none;
}

input:-moz-placeholder {
    color: #999;
}

input::-webkit-input-placeholder {
    color: #999;
}

p a {
    font-weight: bold;
}

ol, ul {
	list-style: none;
}

a:hover img {
    opacity: .8;
    transition: 0.3s;
}

mark, .mark {
    background-color: #F1F1F1;
}

table, .table {
	text-transform: capitalize;
}

.table td, .table th {
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f8f8f8;
}

.table-striped td, .table-striped th {
    border-top: 0;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
}

.bottom {
    bottom: 0;
}

.top {
    top: 0;
}

.left {
    left: 0;
}

.right {
    right: 0;
}

.overflow-hidden {
    overflow: hidden;
}

.modal {
	z-index: 9999;
}

.modal-header {
	border-bottom: 0;
}

.modal-header .close {
    padding: 1.32rem 1rem;
}

.modal-content {
	border: 0;
}

.modal-body p {
    font-size: 1rem;
}

.clear {
    clear: both;
}

.nav-pills .nav-link {
    background: #F1F1F1;
	margin-right: .5rem;
}

.nav-link.active {
    font-weight: bold;
}

.border-shadow {
	box-shadow: 0 3px 0px 0 rgba(0,0,0,.03), 3px 6px 12px 0 rgba(0,0,0,.2);
}

.btn:focus {
	outline: none;
	box-shadow: none;
}

.btn-group-xs > .btn, .btn-xs {	
	padding: 1px 5px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px;
}

.spacer {
    width: 100%;
    min-height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.spacer-thin {
    width: 100%;
    min-height: 1px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.flex-bottom {
    align-self: flex-end;
}

/*----------------------- 2. FADE EFFECT ON PAGE LOAD ------------------------------ */

#loadfade {
    animation: fadein 2s;
    -moz-animation: fadein 2s;
    -webkit-animation: fadein 2s;
    -o-animation: fadein 2s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-o-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*----------------------- 3. PACE LOAD BAR ------------------------------ */

.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.pace-inactive {
    display: none;
}

.pace .pace-progress {
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 2px;
}

/*----------------------- 4. NAVBAR ------------------------------ */

.fixed-header {
    position: fixed;
    width: 100vw;
    backface-visibility: hidden;
    z-index: 1000;
}

.pt-fixed {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.pt-normal {
	width: 1700px;
    margin: 0 auto;
}

.navbar-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 1em;
}

.navbar-shrink {
    height: 70px;
}

.navbar-avatar  {
    display: inline-block;
}

.logo {
	transition: 0.3s;
}

a:hover img.logo {
	opacity: unset;
	transition: unset;
}

.logo-shrink {
    height: 50px;
}

.hamb-menu-right, .context-menu {
    position: relative;
    cursor: pointer;
}

.hamb-menu-circle {
    height: 32px;
    width: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50% !important;
}

.navbar-pos {
    margin: 0 auto;
    left: 0;
    right: 0;
}

.navbar-toggler {
    border: unset;
}

.navbar-darkmode {
	color: dodgerblue;
    vertical-align: middle;
}

.bottom-grad {
    left: 0;
    width: 100%;
}

/*----------------------- 5. SIDE NAV MENU ------------------------------ */

.scrollbar-sidenav, .scrollbar-sidenav-res {
    height: calc(100vh - 4rem);
}

.sidenav-l, .sidenav-r {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 10000;
    top: 0;    
    overflow: hidden;
    transition: 0.5s;    
}

.sidenav-l {
	left: -1px;
	padding-top: 25px;
}

.sidenav-r {
    right: -1px;
    padding-top: 25px;
    box-shadow: -15px 0px 15px -7px rgb(0 0 0 / 5%);
}

.sidenav-w, .sidenav-w-right {
    width: 312px;
}

.sidenav a {
    text-decoration: none;
}
.sidenav-user-info{
	z-index: 95;
}
.sidenav-l .closebtn, .sidenav-r .closebtn {
    position: absolute;
    cursor: pointer;
	z-index: 999;
	right: 12px;
}
.closebtn{
	right: -15px !important;
	top:-15px;
}

.buttons-sidenav {
    position: absolute;
    width: 260px;
    margin: 0 25px;
    padding: 0 10px;
	height: 0px;
    z-index: 90;
}

.pointerbtn {
    position: relative;
	float: left;
    cursor: pointer;
	z-index: 999;
}

/* Menu Build*/

.menu-nav-container {
    padding: 1rem;
	width: 300px;
}

.menu-hover:hover {
    z-index: 0;
}

ul.menu {
    padding: 0;
    list-style: none;
}

ul.menu>li {
    position: relative;
    display: block;
	padding: .75rem;
	z-index: 9;
}

ul.menu>li.menu-parent-item {
    position: relative;
    display: block;
    padding: .75rem;
}

ul.sub-menu>li.menu-item-has-children {
    position: relative;
    display: block;
    padding: .75rem 0;
}

ul.sub-menu>li.menu-item-has-children>ul.sub-menu {
    padding: 0 .75em;
}

ul.sub-menu>li.menu-item {
    position: relative;
    display: block;
}

ul.menu>li .menu-parent-item a.parent {
    top: 0;
}

ul.menu>li .menu-parent-item .dropdown-sidenav-btn {
	padding-left: 86%;
}

ul.sub-menu {
    padding: 0;
	margin-top: .75em;
}

.sub-menu {
    display: none;
}

.sub-menu li {
    list-style: none;
}

.sub-menu li a {
    padding: .75em;
}

.menu-item a {
	display: block;
}

.menu-item .parent {
    position: absolute;
	z-index: -1;
}

/* end menu build */

.dropdown-menu {
	margin: 0.25rem 0;
	font-size: unset;
	border: 0;
	min-width: auto;
	box-shadow: 0 15px 20px 0 rgba(0,0,0,.08), 0 1px 4px 0 rgba(0,0,0,.08);
}

.dropdown-menu-blog-w {
    width: 330px;
}

.dropdown-menu-center {
	left: 50%;
	right: auto;
	text-align: center;
	transform: translate(-50%, 0);
}

.dropdown-btn {
    text-decoration: none;
    border: 0;
    background: none;
    cursor: pointer;
    outline: none;
    float: right;
	vertical-align: middle;
}

.dropdown-sidenav-btn {
    text-decoration: none;
    border: 0;
    background: none;
    cursor: pointer;
    outline: none;
    padding: calc(0px + 0.25rem);
    padding-right: 13px;
    right: 0;
    padding-left: 92%;
    margin: -3px 3px;
}

.dropdown-item.active, .dropdown-item:active {
    color: unset;
    background-color: unset;
}

.sub-menu {
    display: none;
}

.menu-bar {
    margin: 0;
}

.menu-bar li {
    display: inline-block;
    margin-right: 1em;
}

.current_page_item .parent, .current-menu-item {
    font-weight: 500;
}

#sidebar {	
	min-width: 295px;
    max-width: 295px;
    padding: 0rem 0.5rem 0.5rem 0.5rem;
	position: relative;
}

#sidebar.active {
    display: none;
}

#sidebarMenu {	
    min-width: 295px;
    max-width: 295px;
    padding: 1rem;
	z-index: 9;
}

input[type="checkbox"]:checked ~ #sidebarMenu {
    transform: translateX(0);
}

input[type=checkbox] {
    transition: all 0.3s;
}

.sidebarIconToggle {
    cursor: pointer;
    z-index: 9999;
    height: 100%;
    width: 100%;
    height: 22px;
    width: 22px;
}

.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    width: 100%;
}

.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}

.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: left;
}

.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
}

.sidenav-margin-top {
    margin-top: -1.6em;
}

.sidenav-nav-container {
    padding: 0 0.5rem;
	width: 260px;
}

.sidenav-nav-container-res {
    padding: 0 1.5rem;
    width: 312px;
}

.sidenav-nav-menu-container { 
    padding: .5rem 0;
}

.sidenav-nav-widget-container {
	padding: .5rem;
}

.toggle-sidenav-button {
	position: absolute;
    right: 3.5rem;
}

.bg-sidemenu-responsive {
	background: #f7f7f7;
}

.dropdown-toggle::after  {
	display: inline-block;
	padding: 0;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f142";
	vertical-align: middle;
	border: 0;
}

.navbar-ft .dropdown-menu, .navbar-dd .dropdown-menu, .dropup .dropdown-menu {
    font-size: 14px;
}

.navbar-ft-opt {
	padding: 0.5rem;
}

.navbar-box {
    padding: 0.5rem 0;
    display: inline-flex;
}

.navbar-icons {	
	float: right;
}

.navbar-dd {
    display: inline-block;
	padding: 0.5rem 0;
	vertical-align: middle;
}

.menu-right {
    width: auto;
}

.navbar-box label {
	margin-top: 0.5rem;
}

.navigation-sticky-top, .col-sticky-top {
    position: sticky !important;
	top: 70px !important;
    z-index: 1;
}

/*----------------------- 6. LOGO ------------------------------ */

.navbar-logo-left {
    float: left;
}

.logow {
    display: block;
}

.logob {
    display: none;
}

/*----------------------- 7. LAYOUT ------------------------------ */

#page-content-wrapper {
    width: 100%;
	padding: 1rem;
}

.container-general {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
	min-height: 100vh;
}

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.featured-grid-mb {
	margin-bottom: 1.875rem;
}

.line {
    height: 1px;
    background-image: linear-gradient(90deg,rgba(0,0,0,0.00) 0%,#000000 50%,rgba(0,0,0,0.00) 100%);
    opacity: .1;
    width: 100%;
}
body.wp-night-mode-on .line{
	background-image: linear-gradient(90deg,rgba(0,0,0,0.00) 0%,#FFFFFF 50%,rgba(0,0,0,0.00) 100%);
}
.vline {
    width: 1px;
    height: 100%;
    position: absolute;    
    background-image: linear-gradient(180deg,rgba(0,0,0,0.00) 0%,#000000 50%,rgba(0,0,0,0.00) 100%);
    opacity: .1;
}

.vline-left {
	position: absolute !important;
    left: 295px;
}

.vline-right {
	left: 0;
}

.img__wrap {
    position: relative;
    transition: 0.3s;
}

.img__wrap:hover {
    opacity: .8;
    transition: 0.3s;
}

.img__wrap img {
    transition: 0.3s ease-in-out;
    display: block;
	object-fit: cover;
	width: 100%;
}

.img-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-object-fit: cover;
    -moz-object-fit: cover;
    -o-object-fit: cover;
    -ms-object-fit: cover;
}

.img-res {
    width: 100%;
	height: auto;
}

.img-fluid-nb {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	width: 100%;
}

.txt {
    color: white;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.txt a {
    color: #fff;
}

.home-va-btn {
	float: right;
    border: 0;
    text-decoration: none;
    font-weight: bold;
}

.see-more-upd-button {
    position: absolute;
    top: 16px;
    right: 15px;
}

.social-icon-size a {
    font-size: 1.25em;
	margin: 0.5rem;
}

.slider-wrap, .slider-articles-wrap, .feat-cat-wrap, .feat-genres-wrap, .repeat-module-wrap {
    overflow: hidden;
	position: relative;
}

.slider-wrap img, .slider-articles-wrap img, .feat-cat-wrap img, .feat-genres-wrap img, .repeat-module-wrap img {
    transition: 0.3s ease-in-out;
    display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.post-type-header {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
							
.post-type-custom-bg {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	background-color: rgba(0, 0, 0, 0.5);
}
							
.post-type-header-inner {
	margin: 1em 0;
	color: #fff;
}
							
@media only screen and (min-width: 1600px) {
	
	.post-type-single-column {
		max-width: 66.666667%;
	}
	
}

.post-type-single-column {								
	max-width: 1506px;
	width: 100%;
	margin: 30px;
}

.coverimage {
	width: 100%;
	max-width: 100%;
    height: auto;	
}

.rectangleimage {    
    width: 100%;
    aspect-ratio: 16/9;
	object-fit: cover;
}

.squareimage, .halfimage, .onecolimage {    
    width: 100%;
    aspect-ratio: 1/1;
	object-fit: cover;
}

.poster {    
	width: 100%;
	aspect-ratio: 9/13;
    object-fit: cover;
}

.trailerimg {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.post-modal-title-first {
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.2;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.4);
}

.post-modal-title {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 2px rgb(0 0 0 / 40%);
}

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

.page-overlaytxt {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .25);
    overflow: hidden;
    width: 100%;
    top: 0;
}

.mangamenu-btn {
    color: #FFF;
    background: dodgerblue;
    padding: 5px;
    line-height: normal;
    border-radius: 5px;
}

.staff-image-az {
    width: 150px;
    max-width: 100%;
    height: 150px;
    object-fit: cover;
}

.staff-image, .search-image {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 1/1;
}

.staff-image-tax {
    width: 250px;
    max-width: 100%;
    height: 250px;
    object-fit: cover;
	aspect-ratio: 1/1;
}

.staff-row {
	margin-bottom: 15px;
}

.staff-left {
	display: inline-block;
	margin-right: 5px;
	width: 60px;
	height: 60px;
}

.staff-left-2 {
	display: inline-block;
	vertical-align: middle;
	text-align: right;
}

.staff-right-2 {
	display: inline-block;
	margin-left: 5px;
	width: 60px;
	height: 60px;
}

.staff-left-author {
	display: inline-block;
	margin-right: 5px;
	width: 50px;
	height: 50px;
}

.staff-left-character {
	display: inline-block;
	margin-right: 5px;
	width: 40px;
	height: 40px;
}

.staff-left-character img {
	border-radius: 50%;
	max-width: 100%;
    height: auto;
	aspect-ratio: 1/1;
    object-fit: cover;
	border: 2px solid #FFF;
}

.staff-left img, .staff-left-author img, .staff-right-2 img {
	width: 60px;
	height: 60px;
	aspect-ratio: 1/1;	
    object-fit: cover;
}

.staff-right {
	display: inline-block;
	vertical-align: middle;
}

.staff-right a {
    font-weight: 600;
	font-size: 14px;
}

@media (min-width: 1183px) and (max-width: 1640px) {
	.staff-right {
		width: 130px;
	}
}

.staff-names {
    font-weight: 600;
	font-size: 14px;
}

.character {
    font-size: 12px;
}

.character-desc {
    font-size: 18px;
}

table.charlist td {
    padding-left: 0;
}

.related-left {
	display: inline-block;
	margin-right: 10px;
	width: 100px;
}

.related-right {
	display: inline-block;
	vertical-align: top;
}

@media (max-width: 360px) {
	.related-right {
		width: 40%;
	}
}

@media (min-width: 361px) and (max-width: 480px) {
	.related-right {
		width: 62%;
	}
}

.related-right a {
    color: inherit;
    font-weight: 600;
	font-size: 14px;
}

.filmography-row {
    padding: 1em;
    margin-bottom: 1em;
    background: #F2FAFA;
    border-radius: 10px;
	box-shadow: 5px 5px 15px -3px rgb(0 0 0 / 25%);
}

.filmography-character {
    font-size: 15px;
    color: #7a7a7a;
	margin-bottom: .5rem;
}

.filmo-data {
	font-size: 15px;
}

.filmo-data .type {
	text-transform: capitalize;
	display: inline-block;
}

.filmo-data .type::after {
	content: " | ";
}

.type {
    text-transform: capitalize;
}

.dropdown-toggle {
    display: table-row;
}

.custom-badge {
    display: table;
    font-size: 11px;
    padding: 6px 8px;
    white-space: nowrap;
    text-shadow: none;
    line-height: 1;
    border-radius: 4px;
}

.search-img-wrap {
    position: relative;
}

@media (max-width: 576px) {
	.search-img-wrap {
		height: 58vw;
	}
}

@media (min-width: 577px) and (max-width: 767px) {
	.search-img-wrap {
		height: 63vw;
	}
}

@media (min-width: 768px) and (max-width: 1200px) {
	.search-img-wrap {
		height: 30vw;
	}
}

@media (min-width: 1200px) and (max-width: 1385px) {
	.search-img-wrap {
		height: 20vw;
	}
}

@media (min-width: 1386px) and (max-width: 1699px) {
	.search-img-wrap {
		height: 17vw;
	}
}

@media (min-width: 1700px) {
	.search-img-wrap {
		height: 295px;
	}
}

.search-img-wrap img {
    object-fit: cover;
	width: 100%;
    height: 100%;
}

body.error404 .container-general {
    min-height: unset;
}

body.error404 #page-content-wrapper {
    min-height: unset;
}

/* TAXONOMY GALLERY
-------------------------------------- */

.gallery-container {
   margin: 1rem 0.5rem;
}

.gallery-list.col-md-12,
.gallery-list.col-md-6,
.gallery-list.col-md-4,
.gallery-list.col-md-3,
.gallery-list.col-md-2,
.gallery-list.col-md-1 {
	padding-left: 7.5px;
	padding-right: 7.5px;
}

.image-grid {
	width: 100%;
	height: 300px;
	margin-bottom: 15px;
}

.image-grid img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

/* BACK TO TOP AND BACK TO HOME BUTTON
-------------------------------------- */

#back-to-top,
#back-to-home {
    position: fixed;
    bottom: 30px;
    z-index: 999;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    cursor: pointer;
    border: 0;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
}

#back-to-top {
    right: 16px;
}

#back-to-home {
    right: 56px;
}

#back-to-top.show {
    opacity: 1;
}

#back-to-home.show {
    opacity: 1;
}

/*----------------------- 8. FLICKITY SLIDER ------------------------------ */

.carousel {
	height: auto;
	min-height: 100%;
	overflow: initial;
}

.carousel-cell {
    width: 66%;
    height: 400px;
	min-height: 100%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-cell-image {
    display: block;
    max-height: 100%;
	max-width: 100%;
}

.home-slider-img { 
	width: 100%; 
}

.flickity-viewport {
    transition: height 0.2s;
}

.flickity-prev-next-button {
    width: 32px;
    height: 32px;
	background: none;
}

.flickity-button-icon {
    display: none;
}

.flickity-button:hover {
	background: none;
}

.flickity-button:focus {
	box-shadow: none;
}

.previous:before {
    content: "\f053";
    /* left */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-right: 2px;
}

.next:before {
    content: "\f054";
    /* right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* position outside */
.flickity-prev-next-button.previous {
    top: -20px;
    right: 38px;
    left: unset;
}

.flickity-prev-next-button.next {
	top: -20px;
    right: 17px;
}

/*----------------------- 9. TAGS AND CATEGORIES LIST ------------------------------ */

.catlist {
    display: table;
    line-height: 1.5em;
}

.catlist:before {
    content: "\f192";
    /* right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-right: 4px;
}

.taglist {
    margin-top: 0.3rem;
    margin-right: 0.5rem;
    padding: 0.5rem 0;
    font-weight: 500;
}

/*----------------------- 10. SINGLE STYLES ------------------------------ */

.post-text-content {
	font-size: 1.125em;
}

.single-comments-content {
	margin: 0 0 0 70px;
    padding: 1em;
}

.single-comments-author-meta {
    font-size: .85rem;
	margin: 0 0 1em;
}

.single-comments-author {
    font-weight: bold;
}

.single-shadow-box {
    background-image: linear-gradient(0deg,#000 0,rgba(0,0,0,.5) 60%,transparent 100%);
}

.table-bordered {
    border: unset;
}

.episode-title {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 5px;
}

.collection {
	position: relative;
}

.collection-text {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    color: #fff;
    padding: 0.75em;
    margin: 0.75em;
}

.collection-tax-desc {
    font-size: 18px;
}

.similar-alt-title {
    font-size: 1.5em;
    font-style: italic;
}

/* BULLETED LIST
---------------- */

.post-text-content ul {
	font-size: 1.125em;
	list-style: none;
}

.post-text-content ul li {
	list-style: disc;
}

/* NUMBERED LIST
---------------- */

.post-text-content ol {
	font-size: 1.125em;
	list-style: none;
	counter-reset: animacewp-counter;
	padding-left: 1rem;
}

.post-text-content ol li {
	counter-increment:animacewp-counter;
}

.post-text-content ol li::before {
	content: counter(animacewp-counter) ". ";
	font-weight: 700;
}

/* MOVIES CPT
------------- */

.movie-bg-card {
    height: 40vh;
    width: 100%;
    object-fit: cover;
}

.movie-bg-img {
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;    
}

.movie-ratings-mpaa {
    display: inline-block;
    border: 2px solid;
    text-transform: uppercase;
    border-radius: .5rem;
    padding: .25rem .5rem;
    font-weight: 600;
    font-size: 20px;
}

/* REVIEWS CPT
-------------- */

.review-boxes-content, .movie-fields-boxes-content {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	width: max-content;
}

.ratenumber {
    font-size: 24px;
    font-weight: bold;
	font-family: system-ui;
}

.rating-boxes {
	width: 50px;
    height: 50px;
	position: relative;
	display: inline-block;
}

.author-box-bg > .review-author-list-name, .author-box-bg > .review-author-list-name a {
	color: #000;
}

/* MANGAS CPT
-------------- */

.manga-tr-image {
    width: 100%;
    height: auto;
}

.mangatogglemenu {
    display: inline-block;
    float: right;
	margin: 10px;
}

.parenttitle {
	font-size: 2.5em;
	font-weight: bold;
}

.childtitle {
	font-size: 2em;
}

.single-reader-box {
	background: #FFF;
}

.chapter-list {
    border: 1px solid #ced4da;
}

.chapter-list .item {
    border: none;
    border-bottom: 1px solid #ced4da;
}

.chapter-list .item:last-child {
    border-bottom: none;
}

.chapter-list .item .extra {
    display: flex;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    white-space: nowrap;
    overflow: hidden;
    margin-left: auto;
    font-size: 0.9rem;
    opacity: 0.8;
}

.manga-child-content {
	padding: 0em;
}

.chapter-navigation {
	display: inline-block;
    width: 100%;
	margin-bottom: 1em;
}

.chapter-nav-left, .chapter-nav-right {
    background-color: #dd3333;
    padding: 6px 6px;
    border-radius: 20px;
    font-weight: bold;
    margin: 10px;
}

.chapter-nav-left:hover, .chapter-nav-right:hover {
	background-color:#292929;
}



/* FILTERS
---------- */

.filter-letter-w {
	width: 38px; 
}

/* EPISODES PAGE
---------------- */

.playlist-button {
    color: #fff;
    background-color: #C47AFF;
    border-color: #C47AFF;
	font-weight: bold;
}

.playlist-button:hover {
    color: #fff;
    background-color: #7978FF;
    border-color: #7978FF;
}

span[data-href]{
    cursor:pointer;
}

.eplistright {
	height: 720px;
    overflow: hidden;
    overflow-y: auto;
    padding: 20px;
}

#playlist {
	margin: 0;
	padding: 0;
	list-style: none;
}

video {
	object-fit: cover;
	width: 100%;
	height: 720px;
	position: fixed;
	top: 0;
	left: 0;
}

.icon-green {
    color: green;
}

.icon-red {
    color: red;
}

.table100 {
    background-color: #fff;	
	padding-left: 15px;
	margin-bottom: 30px;
	position: relative;
    padding-top: 60px;
	padding-bottom: 15px;
}

.table100-body table {
    width: 100%;
}

.table100-head table {
    width: 100%;
}

.table100-body th, .table100-body td {
    font-weight: unset;
    padding-right: 10px;
}

.table100 .column1 {
    width: 94%;
    padding-left: 10px;
}

.table100 .column2 {
    width: 6%;
	text-align: center;
}

.table100-head {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.table100.downloads .table100-head {
    padding-right: 15px;
	padding-left: 15px;
}

.table100.downloads th {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    background-color: transparent;
}

.table100.downloads td {
    font-size: 14px;
    color: gray;
    line-height: 1.4;
    background-color: #f7f7f7;
}

.table100.downloads .table100-body tr {
    overflow: hidden;
    border-bottom: 10px solid #fff;
    border-radius: 10px;
}

.table100.downloads .table100-body table {
    border-collapse: separate;
    border-spacing: 0 10px;
}

.table100.downloads .table100-body td {
    border: solid 1px transparent;
    border-style: solid none;
    padding-top: 10px;
    padding-bottom: 10px;
}

.table100.downloads .table100-body td:first-child {
    border-left-style: solid;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.table100.downloads .table100-body td:last-child {
    border-right-style: solid;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

.table100.downloads tr:hover td {
    background-color: #ebebeb;
    cursor: pointer;
}

.table100.downloads .table100-head th {
    padding-top: 25px;
    padding-bottom: 25px;
	font-weight: bold;
}

.table100.downloads .table100-body {
    padding-right: 15px;
}

.table100.downloads .dropdown-menu {
    transform: translate3d(-75px, 18px, 0px) !important;
}

/*----------------------- 11. WORDPRESS GENERAL STYLES ------------------------------ */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

img.alignright {
    float: right;
    margin: 0 0 1em 1em;
}

img.alignleft {
    float: left;
    margin: 0 1em 1em 0;
}

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignright {
    float: right;
}

.alignleft {
    float: left;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption p.wp-caption-text {
	font-size: 12px;
    border-bottom: 1px solid #F1F1F1;    
    padding-bottom: 1rem;
    text-align: left;
    padding: 1rem 2px;
	padding-top: 0;    
}

div.wp-caption p:first-of-type:first-letter, div.wp-caption p .wp-caption-text:first-of-type:first-letter {
	background: unset !important;
    font-size: unset !important;
    font-weight: unset !important;
    color: unset !important;
    padding: unset !important;
    margin: unset !important;
    float: unset !important;
    line-height: unset !important;
}

div.wp-caption {
    max-width: 100%;
	margin-bottom: 20px;
}

blockquote>p {
    border-left: 4px solid #19F;
    padding: 1rem;
    margin-top: 1rem;
    font-weight: bold;
    font-size: 1.25em;
}

pre {
    margin: 1rem;
    padding: 1rem;
    color: #aaa;
    background-color: #333333;
    white-space: pre;
    border-radius: .25rem;
    font: 16px/24px 'Courier New', Courier, 'Lucida Sans Typewriter', 'Lucida Typewriter', monospace;
}

/* WORDPRESS COMMENTS 
--------------------- */

.author-avatar img {
	width: 200px;
    height: auto;
}

a:hover img.avatar {
    opacity: unset;
    transition: unset;
}

.bypostauthor {
    padding: 1em 0;
}

.logged-in-as a {
	font-weight: normal;
}

#comments ol li {
    display: block;
	margin: 1.5rem 0;
}

.comment-respond {
    margin: 1rem 0;
}

/*----------------------- 12. WORDPRESS PAGED NAVIGATION ------------------------------ */

.page-numbers,
.page-numbers a,
.page-numbers a:hover,
.page-numbers li.active a,
.page-numbers.disabled {
    cursor: pointer;
    padding: .25rem .75rem;
    display: inline-block;
    width: auto;
    height: 35px;
    vertical-align: middle;
	font-size: 16px;
}

.page-numbers.dots {
    width: auto;
}

.page-numbers.current {
    font-weight: bold;
}

.page-numbers.next, .page-numbers.prev {
    width: 35px;
}

.page-numbers.next:before, .page-numbers.prev:before {
	content: none;
}

/*----------------------- 13. WORDPRESS WIDGETS STYLES ------------------------------ */

.sidenav-nav-container .widget_categories, 
.sidenav-nav-container .widget_archive, 
.sidenav-nav-container .widget_pages, 
.sidenav-nav-container .widget_meta, 
.sidenav-nav-container .widget_recent_entries, 
.sidenav-nav-container .widget_tag_cloud,
.sidenav-nav-container .widget_calendar,
.sidenav-nav-container .widget_search,
.sidenav-nav-container .widget_custom_html,
.sidenav-nav-container .widget_recent_comments,
.sidenav-nav-container .widget_nav_menu .widget_titles {
    padding: .9rem;
}

.widget_categories ul,
.widget_archive ul,
.widget_pages ul,
.widget_meta ul,
.widget_recent_entries ul {
    padding-left: 0;
	margin-top: 0.25rem;
}

.widget_categories li,
.widget_archive li,
.widget_pages li,
.widget_meta li,
.widget_recent_entries li {
    list-style: none;
    margin-bottom: 0.25rem;
}

.widget_categories li ul li, 
.widget_archive li ul li, 
.widget_pages li ul li, 
.widget_meta li ul li,
.widget_recent_entries li ul li {
	margin-left: 0.25rem;
}

.widget_categories li ul li:before, 
.widget_archive li ul li, 
.widget_pages li ul li, 
.widget_recent_entries li ul li {
	margin: 0 0.25rem;
	content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
	color: #007BFF;
}

.widget_media_image img {
	width: 100%;
}

/* Specially rational-styled calendar for WP */
#wp-calendar {
    width: 100%;
    max-width: 37.5rem;
    margin-left: auto;
    margin-right: auto;
}

#wp-calendar caption {
    padding: 0.5rem;
    text-align: right;
    caption-side: top;
    font-size: 1rem;
    color: unset;
    text-transform: lowercase;
}

#wp-calendar thead tr {
    border-right: 1px solid #ccc;
}

#wp-calendar thead th {
    font-weight: 500;
    padding: 0.25rem;
    text-transform: lowercase;
    text-align: right;
    border-right: 1px solid #ccc;
}

#wp-calendar tbody td {
    position: relative;
    padding: 0.25rem;
    text-align: right;
    border-right: 1px solid #ccc;
}

#wp-calendar tbody td.pad {
    opacity: 0.7;
}

#wp-calendar tbody td#today {
    font-weight: 500;
}

#wp-calendar tbody td#today:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 10px solid #999;
    border-left: 10px solid transparent;
}

#wp-calendar tbody td a {
    display: block;
    background: #20c997;
}

#wp-calendar tbody td a:hover {
    background: #0074C6;
    color: #fff;
}

#wp-calendar tfoot tr {
    border-bottom: 1px solid #ccc;
}

#wp-calendar tfoot tr td {
    border: 0;
    padding: 0;
}

#wp-calendar tfoot tr a {
    display: block;
    padding: 0.25rem 0.75rem;
    text-transform: lowercase;
}

#wp-calendar tfoot tr #prev {
    text-align: left;
}

#wp-calendar tfoot tr #next {
    text-align: right;
}

/* RECENT COMMENTS WIDGET
------------------------- */

.widget_recent_comments ul {
    list-style: none;
    padding: 0;
}

.widget_recent_comments li:before {
    content: "\f27a";
    /* right */
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin: 0.25em;
}

.comment-author-link {
    font-weight: bold;
}

/* COUNTS IN WIDGETS
-------------------- */

.post_count {
    margin-left: 0.5em;
    font-size: 0.75rem;
}

/* WIDGET NAV MENU
-------------------- */

.widget_nav_menu .widget_titles {
    margin: 1rem;
}
	
/* WIDGET DROPDOWNS
------------------- */

.widget_archive, .widget_categories {
	position: relative;
}

.widget_archive select, .widget_categories select {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #F1F1F1;
    border: 1px solid #F1F1F1;
    background-clip: padding-box;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* WIDGET SEARCH BAR
-------------------- */

#custom-search-input {
    width: 100%;
    position: relative;
}

#custom-search-input button {
    border: 0;
    background: none;
    padding: 7px 10px;
    position: absolute;
    right: 0;
    margin-bottom: 0;
    color: #8E8E8E;
    top: 0;
}

input[type="search"] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    font-family: inherit;
    font-size: 100%;
}

input[type="search"] {
    background: #ededed url('../img/search.svg') no-repeat 9px center;
    background-size: 18px 18px;
    border: 1px solid #efefef;
    padding: 7px 15px 9px 32px;
    width: 55px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}

/*----------------------- 14. GALLERY STYLES ------------------------------ */

.gallery {
	background: #e9e9e9;
    margin-bottom: 2em !important;
}

.gallery-item {
	margin: 0 !important;
}

.gallery-item img {
	width: 100%;
	height: auto;
    max-width: 100%;
	border: 0 !important;
    padding: .5em;
}

@media(max-width: 720px){
    .gallery-item {
        max-width: 50%;
    }
}

@media(max-width: 480px){
    .gallery-item {
        max-width: 100%;
    }
}

.gallery-caption {
    display: block;
    font-size: 0.71111em;
    line-height: 1.6;
    margin-bottom: 1em;
    padding: 0.5rem;
}

/*----------------------- 15. CONTACT FORM STYLES ------------------------------ */

/* CUSTOM CF7 STYLES
-------------------- */

.wpcf7 label {
    font-weight: bold;
}

/* SELECT
--------- */

select.wpcf7-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('../img/arrowdown.svg');
    background-position-x: 95%;
    background-position-y: 50%;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-color: #ededed;
}

.wpcf7-select {
    width: 100%;
    border: 1px solid #efefef;
    padding: 7px 40px;
    margin-top: 0.5rem;
    padding-left: 20px;
}

/* FIELDS
--------- */

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
    background-color: #ededed;
    border: 1px solid #efefef;
    padding: 7px 20px;
    margin-top: 0.5rem;
    width: 100%;
}

.wpcf7 textarea {
    background-color: #ededed;
    border: 1px solid #efefef;
    padding: 7px 20px;
    margin-top: 0.5rem;
    width: 100%;
}

.wpcf7-quiz-label {
    display: block;
    margin-top: 0.5rem;
}

/* RADIO
-------- */

.wpcf7-list-item-label {
    margin-left: 0.5em;
    display: inline-block;
}

.wpcf7 input[type="radio"]:after {
    width: 22px;
    height: 22px;
    border-radius: 15px;
    top: -3px;
    left: -1px;
    position: relative;
    background-color: #d1d3d1;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

.wpcf7 input[type="radio"]:checked:after {
    width: 22px;
    height: 22px;
    border-radius: 15px;
    top: -3px;
    left: -1px;
    position: relative;
    background-color: #1199FF;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

/* CHECKBOX
----------- */

.wpcf7-list-item-label {
    margin-left: 0.75em;
    display: inline-block;
}

.wpcf7 input[type="checkbox"]:after {
    width: 22px;
    height: 22px;
    top: -3px;
    left: -1px;
    position: relative;
    background-color: #d1d3d1;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

.wpcf7 input[type="checkbox"]:checked:after {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    top: -3px;
    left: -1px;
    position: relative;
    background-color: red;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

/* BUTTONS
---------- */

.wpcf7 input[type="submit"],
.wpcf7 input[type="button"] {
    background-color: #5C5C5C;
    border: 0;
    padding: 7px 20px;
    margin: 20px 0;
    width: 100%;
    color: #fff;
}

.wpcf7 input[type=file] {
    color: #000;
    background-color: #ededed;
    border: 1px solid #efefef;
    padding: 7px 20px;
}

/* MESSAGES
----------- */

span.wpcf7-not-valid-tip {
    padding: 7px 20px;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing,
div.wpcf7-mail-sent-ok,
div.wpcf7-mail-sent-ng, 
div.wpcf7-aborted {
    font-weight: bold;
    margin: 0;
    padding: 7px 20px;
	text-transform: uppercase;
	color: #fff;
	border: 0;
}

div.wpcf7-mail-sent-ok {
    background: #398f14;
}

div.wpcf7-acceptance-missing {
	background: #FFA500;
}

div.wpcf7-validation-errors{
	background: #ff0000;
}

.wpcf7-mail-sent-ok:before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-right: 4px;
}

.wpcf7-not-valid-tip:before,
.wpcf7-validation-errors:before,
.wpcf7-acceptance-missing:before,
.wpcf7-mail-sent-ng:before, 
.wpcf7-aborted:before {
    content: "\f06a";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-right: 4px;
}

div.wpcf7-mail-sent-ng, div.wpcf7-aborted {
    background: #ff0000;
}

/*----------------------- 16. DARK MODE ------------------------------ */

body.wp-night-mode-on {
    background: #232323;
}

body.wp-night-mode-on .sidenav {
    background: #232323;
}

body.wp-night-mode-on footer {
    background: #191919;
}

body.wp-night-mode-on select {
    background: #323232;
	color: #fff;
}

body.wp-night-mode-on a:hover {
    text-decoration: none;
}

body.wp-night-mode-on ul.menu > li a {
    color: #fff;
}

body.wp-night-mode-on .menu-hover:hover > .sub-menu li a {
    color: #fff;
}

body.wp-night-mode-on .form-control {
    background-color: #323232;
}

body.wp-night-mode-on .form-control:focus {
    color: #fff;
}

body.wp-night-mode-on .btn-custom {
    color: #fff !important;
    background-color: #000 !important;
    border-color: #000 !important;
}

body.wp-night-mode-on .page-numbers {
    color: #fff !important;
    background-color: #363636 !important;
    border-color: #363636 !important;
}

body.wp-night-mode-on .bg-sidenav {
    background: linear-gradient(
    to bottom,
    #641220,   
    #a11d33,   
    #c72c41    
  );
}

.bg-sidenav {
    background: linear-gradient(
    to bottom,
    #641220,   
    #a11d33,   
    #c72c41    
  );
}
@media screen and (max-width: 1385px) {
	.menu-menu-1111-container ul li a {
	color: white;
	}}
body.wp-night-mode-on .bg-sidenav {
    background: #323232;
}

body.wp-night-mode-on .bg-sidemenu-responsive {
    background: #191919;
}

body.wp-night-mode-on .bg-current, body.wp-night-mode-on .card-body {
    background: #292929;
}

body.wp-night-mode-on .bg-post-ly1 {
    background: #141414;
}

body.wp-night-mode-on .bg-side {
    background: #333333;
}

body.wp-night-mode-on .bg-light, body.wp-night-mode-on .btn-warning {
    background-color: #151515 !important;
	border: 0;
}

body.wp-night-mode-on .hamb-menu, body.wp-night-mode-on .hamb-menu-right {
    color: #fff;
}

body.wp-night-mode-on .logow {
    display: none;
}

body.wp-night-mode-on .logob {
    display: block;
}

body.wp-night-mode-on .arrow-icon:before {
    background: #141414;
}

body.wp-night-mode-on .dropdown-divider {
    border-top: 1px solid #232323;
}

body.wp-night-mode-on .form-control {
	background-color: #323232;
}

body.wp-night-mode-on .form-control:focus {
	color: #fff;
}

body.wp-night-mode-on .table-striped tbody tr:nth-of-type(odd) {
    background-color: #282828;
}

body.wp-night-mode-on .modal-content {
    background-color: #191919;
}

body.wp-night-mode-on .text-out {
    color: #fff;
}

body.wp-night-mode-on .border-custom {
    border-color: #232323;
}

body.wp-night-mode-on .border {
    border: 1px solid rgba(0, 0, 0, .1);
}

body.wp-night-mode-on .border-bottom, body.wp-night-mode-on .modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, .1) !important;
}

body.wp-night-mode-on .border-top {
    border-top: 1px solid rgba(0, 0, 0, .1) !important;
}

body.wp-night-mode-on .border-left {
    border-left: 1px solid rgba(0, 0, 0, .1) !important;
}

body.wp-night-mode-on .border-right {
    border-right: 1px solid rgba(0, 0, 0, .1 !important);
}

body.wp-night-mode-on .dropdown-menu {
	background-color: #191919;
	color: #fff;
}

body.wp-night-mode-on .dropdown-btn {
    color: #fff;
}

body.wp-night-mode-on .dropdown-item {
    color: #fff;
}

body.wp-night-mode-on .dropdown-item:hover, body.wp-night-mode-on .dropdown-item:focus {
	background-color: unset; 
	color: unset;
}

body.wp-night-mode-on select {
    background: #323232;
	color: #fff;
}
body.wp-night-mode-on .bg-navbar {
background-color:none !important;}
body.wp-night-mode-on .dropdown-sidenav-btn {
    color: #fff;
}

body.wp-night-mode-on .message-label {
    color: #fff;
}

body.wp-night-mode-on .close, body.wp-night-mode-on .closebtn:hover {
    color: #fff;
}

body.wp-night-mode-on .alert-dismissible .close {
    color: inherit;
}

body.wp-night-mode-on .breadcrumb {
    background: #303030;
}

body.wp-night-mode-on .navbar .nav-link {
	color: #fff;
}

body.wp-night-mode-on .nav-pills .nav-link.active {
	background: #060606;
}

body.wp-night-mode-on .nav-pills .nav-link {
	background: #7C7D7D;
}

body.wp-night-mode-on #back-to-top, body.wp-night-mode-on #back-to-home {
	color: #fff;
}

body.wp-night-mode-on .menu-hover:hover, body.wp-night-mode-on .col-hover:hover {
	background: rgba(0,0,0,.85);
}

body.wp-night-mode-on .drawer-content {
    background: #232323;
}

body.wp-night-mode-on .single-comments-content {
    background: #323232;
}

body.wp-night-mode-on .alert {
	background: #1e272e !important;
    border: 0;
}

body.wp-night-mode-on .gallery {
	background: #323232;
}

body.wp-night-mode-on .pass-strength-result {
	color: #323232;
}

body.wp-night-mode-on .movie-series-bg-color, body.wp-night-mode-on .manga-bg-color {	
	background: #202020;
}

body.wp-night-mode-on .card-movies-series  {
	background: #3A3A3A;
}

body.wp-night-mode-on .card-custom {
    background: #292929;
}

body.wp-night-mode-on .table100.downloads td {
    background-color: #333333;
    color: #fff;
}

body.wp-night-mode-on .accessibility-settings {
    background-color: #191919;
}

body.wp-night-mode-on .single-reader-box {
    background-color: #191919 !important;
}

body.wp-night-mode-on #profilepress-myaccount-wrapper .ppmyac-dashboard-item {
    background-color: unset;
}

body.wp-night-mode-on #profilepress-myaccount-wrapper .ppmyac-dashboard-item.isactive {
	background-color: #007bff;
}

/*----------------------- 17. EXTRAS ------------------------------ */
/* Sidenav User Info Styles */
.sidenav-user-info {
    padding: 20px 15px;
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    text-align: center;
}

.sidenav-logo {
    margin-bottom: 15px;
    text-align: center;
}

.sidenav-logo img {
    max-height: 40px;
    max-width: 80%;
    object-fit: contain;
}

.sidenav-user-details {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.sidenav-user-avatar {
    flex-shrink: 0;
	width:20%;
}

.sidenav-user-avatar img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

.sidenav-user-text {
    text-align: left;
	width:70%;
}
.sidenav-login-prompt{
	font-weight:bold;
}
.sidenav-user-name {
    font-weight: bold;
    font-size: 18px;
	color: #eee;
  
}

.sidenav-user-email {
    font-size: 15px;
    color: #aaa;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
}

/* Night mode styles */
body.wp-night-mode-on .sidenav-user-info {
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

body.wp-night-mode-on .sidenav-user-name {
    color: #eee;
}

body.wp-night-mode-on .sidenav-user-email {
    color: #aaa;
}

/* Responsive adjustments */
@media (max-width: 767px) {
 
 
    
    .sidenav-user-details {
     
        text-align: left;
    }
    

    
    .sidenav-user-email {
        max-width: 100%;
    }
}
/* Bootstrap cards */

.card-custom {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
}

.card-custom a:hover h5 {
    color: #909090;
	transition: 0.3s;
}

.card-custom a:hover {
	color: unset;
}

.card-custom a:hover img {
    opacity: unset;
}

.card-movies-series {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
	background: #fff;
}

.table-vol {
	margin-bottom: 0;
}

.table-vol td.tdvolimage {
	width: 75px;
}

.table-vol td.tdvolzip {
	text-align: right;
}

.table-vol td, .table-vol th {
	border-top: 0;
	vertical-align: middle;
}

/* Five columns */

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
}
.col-xs-15 {
    width: 20%;
    float: left;
}
@media (min-width: 768px) {
	
	.col-sm-15 {
        width: 20%;
        float: left;
    }
	
}
@media (min-width: 992px) {
	
    .col-md-15 {
        width: 20%;
        float: left;
    }
	
}
@media (min-width: 1200px) {
	
    .col-lg-15 {
        width: 20%;
        float: left;
    }
	
}

/* Seven columns */

 @media (min-width: 768px){
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1  {
    width: 100%;
    *width: 100%;
  }
}

@media (min-width: 992px) {
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1 {
    width: 14.285714285714285714285714285714%;
    *width: 14.285714285714285714285714285714%;
    max-width: 14.285714285714285714285714285714% !important;
flex:none !important;
  }
}
 
@media (min-width: 1200px) {
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1 {
    width: 14.285714285714285714285714285714%;
    *width: 14.285714285714285714285714285714%;
    max-width: 14.285714285714285714285714285714% !important;
flex:none !important;
  }
}

/* Flags */

.flags {
    display: inline-block;
    height: 20px;
    vertical-align: middle;
    margin: 0px 5px;
}

/* AZ Columns */

.azlistcol {	 
    -webkit-columns: 4;
    -moz-columns: 4;
    columns: 4;
    list-style-position: inside;
	padding: 0;
}

@media (max-width: 576px) {
	
	.azlistcol {	 
		-webkit-columns: 1;
		-moz-columns: 1;
		columns: 1;
	}

}

@media (min-width: 577px) and (max-width: 768px) {
	
	.azlistcol {	 
		-webkit-columns: 2;
		-moz-columns: 2;
		columns: 2;
	}

}

@media (min-width: 769px) and (max-width: 1500px) {
	
	.azlistcol {	 
		-webkit-columns: 3;
		-moz-columns: 3;
		columns: 3;
	}

}

@media only screen and (max-width: 430px) {

	.logoss{
padding:0px !important;
	}

}
/*----------------------- 18. RESPONSIVE STYLES ------------------------------ */

@media only screen and (max-height: 450px) {

    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }

}

@media only screen and (min-width: 300px) and (max-width: 450px) { 	
	
	.home-va-btn {
		float: none;
	}

}

@media only screen and (max-width: 500px) {
	
	.wpnm-button.style-1 {
		font-size: 8px !important;
	}
	
	.navbar-avatar img.avatar {
		width: 24px;
		height: 24px;
	}
	
	.hamb-menu-right {
		font-size: 13px;
	}

  .h1title {
    font-size: 1.8em; /* Match h4 size on mobile */
	}
}

@media only screen and (max-width: 576px) {

	.post-modal-title-first, .post-modal-title {
		display: none;
	}
	
	.onecolimage {   
		aspect-ratio: 16/9;
	}
	
	.charlist-title {
		font-size: 2em;
	}
	
	.table-striped td, .table-striped th {
		padding: 10px 5px;
	}
	
	.staff-right, .staff-left-2 {
		width: 48%;
		line-height: 18px;
	}
	
	.staff-right a, .staff-left-2 a {
		font-size: 12px;
	}
	
	.character {
		font-size: 10px;
	}
	
	.staff-left, .staff-right-2 {
		width: 50px;
		height: 50px;
	}
	
	.staff-left img, .staff-left-author img, .staff-right-2 img {
		width: 50px;
		height: 50px;
	}

}

@media only screen and (max-width: 768px) {		
	
	.movie-bg-card {
		height: 60vw;
	}
	
	.btn-block-res { 
		width: 100%; 
		display:block;
	}
	
	.manga-tr-image {
		width: 150px;
		height: 150px;
	}
	
}

@media only screen and (max-width: 1024px) {

    span.wpcf7-list-item {
        display: block;
        margin: 0;
    }
	
}

@media only screen and (max-width: 1199px) {
	
	.nav-pills {
		display: flex;
		justify-content: center;
	}
	
	.eplistright {
		margin: 1em 0;
	}
	
	video {
		height: 50vw;
	}
	
	.slider-wrap, .slider-articles-wrap, .feat-cat-wrap, .feat-genres-wrap, .repeat-module-wrap {    
		aspect-ratio: 16/9;
		width: 100%;
		height: auto !important;
	}
	
	.collection-tax-text {
		position: relative;
		margin: 1em 0;
	}

}

@media only screen and (max-width: 1385px) {
	
	#page-content-wrapper {
		padding: 0;
	}	
	
	#sidebar {
        margin-left: -270px;
		display: none;
    }
	
	#sidebar.active {
        margin-left: 0;
    }	
	
	.container-general {
		width: 100%;
		padding-right: 15px;
		padding-left: 15px;
		margin-right: auto;
		margin-left: auto;
	}
	
	.logo {
		width: 100%;
	}


	
	.hamb-menu {
		left: 3.5rem;
	}
		
	.sidenav-nav-container {
		padding: 0;
		margin: 15px 0 0 25px;
	}
	
	.border-sidenav-left { 
		box-shadow: -5px 0px 15px -5px rgba(0,0,0,0.25);
	}
	
	.navigation-sticky-top {
		position: unset;
	}
	
	.hide-manga-menu {
		display: none;
	}
	
	.show-extra-btns {
		display: none;
	}
	
	.single-cpt-box {
		padding: 0;
	}
	
}

@media only screen and (max-width: 1699px) {
	
	.navbar-pos, .pt-fixed, .pt-normal, .footer-width {
		width: 100% !important;
	}
	
	.fixed-header {
		width: 100%;
	}
	
	.navbar-pos {
		padding: 0;
	}

}

@media only screen and (min-width: 576px) { 

	.home-slider-img { 
		object-fit: cover; 
		height: 380px; 
	}
	
	.charlist .staff-left {
		width: 100px;
		height: 100px;
	}
	
}

@media only screen and (min-width: 577px) and (max-width: 640px) {
	
	.staff-right { 
		width: 50%;
		line-height: 18px;
	}
	
	.staff-left-2 { 
		width: 50%;
		line-height: 18px;
	}

}

@media only screen and (min-width: 991px) { 

	body.single-movies #sidebarMenu, body.page #sidebarMenu, body.error404 #sidebarMenu { 
		display: none; 
	} 
	
	body.page-template #sidebarMenu { 
		display: block; 
	}	
	
}

@media only screen and (min-width: 1200px) {
	
	.author-avatar img {
		width: 100%;
		height: auto;
	}

	.scale {
		transition: transform .2s;
	}
	
	.scale:hover {
		-ms-transform: scale(1.10);
		-webkit-transform: scale(1.10);
		transform: scale(1.10);
		z-index: 1;
		position: relative;
	}
	
	.ratebox {
		float: right;
		margin-right: 15px;
	}
	
	.collection-tax-text {
		position: absolute;
		bottom: 0;
		left: 0;
		background: rgba(0, 0, 0, .5);
		overflow: hidden;
		color: #fff;
		padding: 0.75em;
		margin: 0.75em;
	}
	
} 


@media only screen and (min-width: 1699px) {
	
	.alignfull {
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		max-width: 100vw;
	}
	
}

#foutershit{
	 justify-content:center;}


.seenchapter:visited{
	color:#C0C0C0 !important;
}


 /* Inline CSS for Manga Recommendation Box */
            #manga-recommendation-box {
                text-align: center;
                margin: 10px 0;
                padding: 20px;
                border: 2px solid #f0f0f0;
                border-radius: 10px;
                background-color: #f9f9f9;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            }
            #manga-recommendation-box h2 {
                font-size: 24px;
                margin-bottom: 10px;
                color: #333;
            }
            #manga-recommendation-box img {
                margin: 15px 0;
                max-width: 100%;
                height: auto;
                border-radius: 10px;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            }
            .manga-recommendation-box-link {
                text-decoration: none;
                font-size: 16px;
                color: #0073aa;
                font-weight: bold;
            }
            .manga-recommendation-box-link :hover {
                color: #005177;
                text-decoration: underline;
            }
            /* Button Styling */
            #rmr-button {
                background-color: #0073aa;
                color: #fff;
                border: none;
                border-radius: 5px;
                padding: 10px 20px;
                font-size: 16px;
                cursor: pointer;
                transition: background-color 0.3s ease;
            }
            #rmr-button:hover {
                background-color: #005177;
            }
            /* Styling for the Random Manga Result */
            #rmr-result {
                margin-top: 20px;
            }
			body.wp-night-mode-on .manga-recommendation-box {
               background-color: #292929 !important;
				border:none !important;
            }
			body.wp-night-mode-on .manga-recommendation-box h2 {
               color: white !important;
            }

.seenchapter:visited{
	color:#C0C0C0 !important;
}


@media (min-width: 1385px) {
  #page-content-wrapper {
    width: calc(100% - 280px); /* Adjusts the width for screens larger than 1385px */
  }
}

.titleh6series{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Number of lines to display */
    -webkit-box-orient: vertical;
}


#timechapterzone{
	  display: flex;
    min-width: 45px;
    margin-left: 2px;
    justify-content: right;
	align-items: top;
}
@media only screen and (min-width: 705px) {
	
	.hide-res, .hide-logo-res {
		display: none !important;
	}	

	
}

@media only screen and (max-width: 705px) {
	
		.logores {
		display: none !important;
		
	}
	
}


	.manga-img{
	margin-bottom:0.5rem;
}
	@media (max-width: 780px) {
  .manga-img {
    margin-bottom: 0.25rem;
  }
}















  .manga-scroll-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
  }

  .manga-scroll-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
  }

  .manga-scroll-wrapper {
    display: flex;
    gap: 8px;
   
    width: max-content;
  }

  .manga-item {
    position: relative;
    text-align: center;
    flex: 0 0 auto;
    width: 170px;
  }

  .manga-item img {
    width: 170px;
    height: 240px;
    object-fit: cover;
    border-radius: 5px;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .manga-item .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    width: 170px;
    height: 240px;
  }

  .manga-item .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(42, 44, 49, 0.6) 0%, rgba(42, 44, 49, 0) 40%);
    pointer-events: none;
    transition: background 0.3s ease;
    border-radius: 5px;
  }

  .manga-item:hover img {
    transform: scale(1.1);
  }

  .manga-item:hover .image-wrapper::after {
    background: linear-gradient(0deg, rgba(42, 44, 49, 0.6) 0%, rgba(42, 44, 49, 0.6) 40%);
  }

  .manga-item .title {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    z-index: 2;
    padding: 0 10px;
    line-height: 1.2;
    max-height: 38px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  /* Skeleton loading styles */
  .skeleton .skeleton-image {
    width: 170px;
    height: 240px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 5px;
  }
  
  .skeleton .skeleton-text {
    width: 150px;
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 3px;
    margin: 10px auto 0;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  @keyframes loading {
    0% {
      background-position: 200% 0;
    }
    100% {
      background-position: -200% 0;
    }
  }

  /* Scroll hint indicator */
  .manga-scroll-container {
    position: relative;
  }
  
  .manga-scroll-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .manga-scroll-container.scrollable::after {
    opacity: 1;
  }













/*----------------------- . Chapter list parent page ------------------------------ */



.lock-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    vertical-align: middle;
	background-color: rgba(220, 53, 69, 0.1);
	padding: 3px 8px;
	border-radius:9px;
}
.lock-icon svg {
    width: 16px;
    height: 16px;
}
.lock-icon.unlocked svg {
    color: #17a2b8;
}
.lock-icon.locked svg {
    color: #dc3545;
}
.coin-icon {
    width: 16px;
    height: 16px;
    color: #ffc107;
    margin-left: 4px;
}
.coin-count {
    margin: 0 4px;
    font-size: 0.9em;
    font-weight: bold;
    color: #6c757d;
}
.chapter-locked {
    opacity: 0.8;
}
	.unlocked{
		color: #17a2b8;
    background-color: rgba(23, 162, 184, 0.1);
		font-weight: normal;
		gap: 5px;
	}
	 body.wp-night-mode-on .unlocked {
		  color: #17a2b8;
    }





/*----------------------- . Chapter table ------------------------------ */





.chapter-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9em;
    padding: 4px 8px;
    border-radius: 9px;
}

.chapter-status.public {
    color: #28a745;
    background-color: rgba(40, 167, 69, 0.1);
}

.chapter-status.unlocked {
    color: #17a2b8;
    background-color: rgba(23, 162, 184, 0.1);
}

.chapter-status.unlocked svg {
    width: 16px;
    height: 16px;
}

.chapter-status.locked {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

.chapter-status.locked svg {
    width: 16px;
    height: 16px;
}

.chapter-status .coin-count {
    font-weight: bold;
    margin: 0 2px;
}

.chapter-locked {
    opacity: 0.7;
}

.cell100.column2 {
    width: 150px;
    text-align: center;
}

.table100-body .row100.body {
    border-bottom: 1px solid #eee;
}

.table100-body .row100.body:hover {
    background-color: #f8f9fa;
}







/*----------------------- . homepage locking style ------------------------------ */




.chapters-container {
        display: flex;
        flex-direction: column;
        gap:3px;
    }
    
    .chapter-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 8px;
        border-radius: 15px;
        font-weight: 600;
    }
    
    .chapter-title {
        margin: 0px !important;
    }
    
    .chapter-title a {
        display: flex;
        align-items: center;
        color: #333;
        text-decoration: none;
    }
    
    .chapter-title a:hover {
        color: #007bff;
    }
    
    .chapter-date {
        color: #6c757d;
        font-size: 0.9em;
    }
    
    .premium-chapter {
       box-shadow: 0 2px 5px rgba(245, 165, 36, 0.2);

    }
    
    .unlocked-chapter {
       box-shadow: 0 2px 5px rgba(23, 162, 184, 0.2);
    }
    
    body.wp-night-mode-on .premium-chapter {
        box-shadow: 0 2px 5px rgba(245, 165, 36, 0.2);
    }
    
    body.wp-night-mode-on .unlocked-chapter {
        box-shadow: 0 2px 5px rgba(23, 162, 184, 0.2);

    }
    
    .premium-chapter .chapter-date {
        color: #7d6608;
        font-weight: 500;
    }
    
    .lock-icon {
        display: inline-flex;
        align-items: center;
        vertical-align: middle;
        margin-left: 6px;
    }
    
    .lock-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .lock-icon.unlocked path {
        color: #17a2b8;
    }
    
    .lock-icon.locked path {
        color: rgb(245 165 36/var(--tw-text-opacity,1));
    }
.homepage-chapters-table-title{
	display: -webkit-box;
  -webkit-line-clamp: 2;   /* limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


@media only screen and (min-width: 1386px) {
	.hide-for-wide{
		display:none;
	}
}