/*===========================================================

	 Template Name: Etoshore
	 Author: Kerem Demirbas
	 File Description : Main css file of the etoshore theme
	
=================================================
	Table of Contents
=================================================
	
	1. Reset CSS
	2. Basic Style
	3. Helpers
	4. Header
	5. Featured
	6. Section Elements
	7. Single Details
	8. Chapter Read
	9. Modal
	10. Footer

=======================================================*/

/* =================================== */
/*  1. RESET CSS
/* =================================== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

*, *::before, *::after {
	box-sizing: border-box;
}

img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
}

/* =================================== */
/*  2. Basic Style 
/* =================================== */

body {
	background: #16161a;
	color: #e8e8e8;
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
}
input, textarea, select, button {
	font-family: 'DM Sans', sans-serif;
}

::selection {
	background: #3f46f4;
	color: #fff;
	text-shadow: none;
}
::placeholder {
	color: #bbb;
}

a {
	color: #3f46f4;
	text-decoration: none;
	-webkit-transition: all .15s ease;
	transition: all .15s ease;
}

a:hover, a:active, a:focus {
	color: #545aef;
	-webkit-transition: all .15s ease;
	transition: all .15s ease;
}

a:focus, a:active,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
button:focus,
button:active {
	outline: none;
}

p {
	line-height: 1.6;
	margin: 0 0 1.5rem 0;
}
p:last-child {
	margin-bottom: 0;
}

blockquote {
	border-left: 5px solid #eee;
	padding: 10px 20px;
}

iframe {
	border: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.5;
	margin: 0 0 1.3rem 0;
}

h1 {
	font-size: 38px;
}

h2 {
	font-size: 32px;
}

dl, ol, ul, pre, blockquote, .table {
	margin-bottom: 1.8rem;
}

#main-wrapper {
	background: -webkit-linear-gradient(0deg, rgba(17,17,20,0.16) 0%, rgba(89,91,227,0.10) 40%, rgba(17,17,20,0.16) 100%);
	background: linear-gradient(90deg, rgba(17,17,20,0.16) 0%, rgba(89,91,227,0.10) 40%, rgba(17,17,20,0.16) 100%);
}

/* stick footer settings */
body, html {
	height: 100%;
}
#main-wrapper {
	min-height: 100%;
	display: flex;
	flex-direction: column;
}
#main-wrapper:after {
	content: ' ';
	clear: both;
	display: block;
}
#content {
	flex-grow: 1;
}
#footer {
	flex-grow: 0;
	flex-shrink: 0;
}
/* /stick footer settings */

.chapter #main-wrapper {
	background: none;
	padding: 30px 0;
}

.home #content {
	padding-top: 40px;
}

.container {
	max-width: 1170px;
}
.container.chapter-container {
	max-width: 100%;
}
.container .container {
	padding: 0;
}

.header-mobile-icons,
.header-mobile-back {
	display: none;
}
.header-mobile-back a {
	color: #e8e8e8;
}

.header-iconic-logo {
	display: none;
	background: #17182a;
	border-radius: 8px;
	padding: 12px;
	width: auto;
	text-align: center;
}

.overflow-hidden {
	overflow: hidden;
	padding-right: 17px;
}
.screen-reader-text {
	display: none;
}

/* =================================== */
/*  3. HELPERS
/* =================================== */
.color-white {
	color: #fff;
}

.text-center {
	text-align: center;
}

.all-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.mb-50 {
	margin-bottom: 50px;
}
.mb-5r {
	margin-bottom: 5rem !important;
}
.bold {
	font-weight: bold;
}

.btn,
a.btn,
button.btn {
	font-weight: 500;
	font-size: 14px;
	font-family: 'DM Sans', sans-serif;
	padding: 10px 30px;

	position: relative;

	background: #3F46F4;
	color: #fff;

	border: 1px solid transparent;

	border-radius: 50px;

	display: inline-block;
	cursor: pointer;

	-webkit-transition: all .15s ease;
	transition: all .15s ease;

	white-space: nowrap;
}
.btn:hover,
a.btn:hover,
button.btn:hover {
	box-shadow: 0px 3px 8px rgb(0 0 0 / 15%);
	transform: translateY(-1px);
	opacity: .8;
}
.btn:disabled,
a.btn:disabled,
button.btn:disabled {
	cursor: default;
	opacity: .3;
	background: #999;
	transform: none !important;
}

.btn-border {
	border: 1px solid !important;
	border-color: #363cd5 !important;
	background: none !important;
	color: inherit !important;
	margin-left: 0 !important;
}
.btn-fill {
	background: #3F46F4 !important;
	border: 1px solid transparent !important;
}

.btn-green {
	background: #cbd813 !important;
}

.btn-transparent {
	background: transparent !important;
	border-color: transparent !important;
	color: #3F46F4 !important;
}
.btn-transparent:hover {
	box-shadow: none !important;
	transform: translateX(1px) !important;
}

.btn-thin {
	font-size: 12px !important;
	padding: 2px 16px !important;
	font-weight: 300 !important;
}
.btn-big {
	display: flex !important;
	font-size: 16px !important;
	border-radius: 4px !important;
	font-weight: 400 !important;
	justify-content: space-between;
	width: 100% !important;
}
.btn-dark {
	border-radius: 8px !important;
	background: #17182A !important;
	padding: 12px !important;
	font-weight: 400 !important;
	color: #a8a8a8 !important;
	display: block !important;
	margin-bottom: 10px;
}
.btn-dark:hover {
	color: #e8e8e8 !important;
}
.btn-dark i {
	color: #3F46F4;
	margin-right: 10px;
	font-size: 18px;
}

.btn.add-favorite {
	padding-left: 15px;
	padding-right: 0;
}

/* PROCESS */
.process {
	position: relative;
}
.process:before {
	content: '';
	position: absolute;
	left: -1px;
	right: -1px;
	top: -1px;
	bottom: -1px;
	border-radius: 3px;
	background: linear-gradient(180deg, rgb(17 18 24 / 35%) 0%, rgb(17 18 24 / 35%) 15%, rgb(0 0 0 / 0%) 100%);
	z-index: 1;
}
.process:after {
	left: 50%;
	margin: -9px 0 0 -10px;
	position: absolute;
	top: 40%;
	color: #888;
	font-size: 24px;
	font-family: etoshore;
	content: '\F528';
	-moz-animation: spin 1s infinite linear;
	-o-animation: spin 1s infinite linear;
	-webkit-animation: spin 1s infinite linear;
	animation: spin 1s infinite linear;
	z-index: 2;
}
.process-btn.process:after {
	font-size: 18px;
	top: 50%;
	margin: -10px 0 0 -9px;
}

/* SELECT ITEM */
.select-item {
	background: #17182A;
	border-radius: 8px;
	padding: 12px 12px 12px 20px;
	display: inline-block;
	cursor: pointer;

	position: relative;
	box-shadow: rgb(0 0 0 / 50%) 0px 5px 35px -15px;
}
.select-item .icon {
	color: #3F46F4;
	margin-right: 10px;
	font-size: 18px;
}
.select-item .text {
	margin-right: 20px;
}
.select-item .arrow {
	background: #3F46F4;
	padding: 1px 5px;
	border-radius: 4px;
	margin-left: 15px;
}
.select-item.image .arrow {
	margin-left: 0;
}
.select-item .arrow:before {
	content: '\E811';
	font-family: etoshore;
}
.select-item.active .select-item-content {
	visibility: visible;
	opacity: 1;
}

.select-item-content {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: calc(100% - 5px);
	left: 0;
	min-width: 100%;
	background: #17182A;
	transition: all .15s ease;
	z-index: 10;
	box-shadow: 0px 20px 20px -20px rgb(0 0 0 / 65%);
}
.select-item-content ul {
	margin-bottom: 0;
	padding: 10px 0;
	overflow-x: hidden;
	max-height: 205px;
}
.select-item-content ul li {
	padding: 5px 12px 5px 20px;
	white-space: nowrap;
}
.select-item-content ul li.active,
.select-item-content ul li:hover {
	background: #363CD5;
}
.select-item-content ul li.active .icon,
.select-item-content ul li:hover .icon {
	color: #e8e8e8;
}
.select-item-content a {
	color: #e8e8e8;
	display: block;
}
.select-item-content ul li input {
	display: none;
}
.select-item.has-a .select-item-content ul li {
	padding: 0;
}
.select-item.has-a  .select-item-content ul li a {
	padding: 5px 12px 5px 20px;
}


/* INPUT */

input,
textarea,
select {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	border: 1px solid transparent;
	color: #e8e8e8;
	outline: none;

	display: block;
	box-sizing: border-box;
	padding: 12px 18px;
	border-radius: 3px;
	background: linear-gradient(to bottom, #282a2f, #2a2b2d 100%);
	box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.15);

	margin-bottom: 10px;
}


/* SCROLL */

.scroll {
	max-height: 744px;
	overflow-y: auto;
	padding-right: 15px;
}
.scroll::-webkit-scrollbar {
	width:8px;
	height:8px;
	background:inherit;
}
.scroll::-webkit-scrollbar-track:vertical {
	background: rgba(0,0,0,.2);
	border-left:3px solid #191B28;
	border-right:2px solid #191B28;
}
.scroll::-webkit-scrollbar-thumb:vertical {
	background: #A5A5A5;
	border-radius: 8px;
}
.scroll::-webkit-scrollbar-track:horizontal {

	border-bottom:8px solid rgba(0,0,0,.2);
}
.scroll::-webkit-scrollbar-thumb:horizontal {
	border-bottom:8px solid rgba(255,255,255,.2);
}
.scroll::-webkit-scrollbar-corner, .scroll::-webkit-resizer {
	background:inherit;
	border-right:8px solid rgba(255,255,255,.2);
	border-bottom:8px solid rgba(255,255,255,.2);
}

/* INFO */
.info {
	margin: 10px 0 30px;
}
.info-content {
	padding: 10px;
	border: 1px solid #363cd5;
	border-radius: 50px;
}
.info-content i {
	color: #363cd5;
	margin-right: 5px;
}
.info.error .info-content {
	border-color: #d5364b;
}
.info.error .info-content i {
	color: #d5364b;
}
.container .info .container {
	padding: 0;
	margin: 0;
}

/* LOADING */
.loading {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;

	display: flex;
	align-items: center;
	justify-content: center;

	transition: all .15s ease;
}
.loading:after {
	color: #888;
	font-size: 24px;
	font-family: etoshore;
	content: '\F528';
	-moz-animation: spin 1s infinite linear;
	-o-animation: spin 1s infinite linear;
	-webkit-animation: spin 1s infinite linear;
	animation: spin 1s infinite linear;
	z-index: 0;
}

/* home go to widgets */
.go-to-widgets {
	height: 324px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}
.go-to-widgets h2 {
	margin-bottom: 0 !important;
}
.go-to-widgets p {
	margin-bottom: 15px !important;
}
.go-to-widgets i {
	font-size: 48px;
	color: #3F46F4;
	margin-bottom: 15px;
}

/* NAVIGATION */
.navigation {
	width: 100%;
	display: block;
	color:#ccc;
	text-align: center;
	margin-top: 50px;
	margin-bottom: 10px;
}

.navigation a, .navigation span {
	display: inline-block;
		background: #3F46F4;
	font-size: 15px;
	color: #e8e8e8;
	text-decoration: none;
	padding: 6px 16px;
	border-radius: 3px;
	/* box-shadow: 0px 2px 7px rgb(0 0 0 / 9%); */
	transition: all .15s ease;
	border: 1px solid transparent;
	box-shadow: 0px 3px 8px rgb(0 0 0 / 8%);
	text-shadow: 0px 1px 5pt rgb(0 0 0 / 6%);
	font-weight: 600;
	margin-bottom: 10px;
}
.navigation a:hover {
	box-shadow: 0px 3px 8px rgb(0 0 0 / 15%);
	transform: translateY(-1px);
	opacity: .8;
}
.navigation a:active {
	box-shadow: 0px 3px 8px rgb(0 0 0 / 15%), inset 0px 3px 8px rgb(0 0 0 / 15%);
}
.navigation a, .navigation span {
	margin-right: 5px;
}

.navigation .current {
	cursor: default;
	background: #e8e8e8;
	color: #444;
	border-color: transparent;
}
.navigation .expand {
	opacity: 0.6;
} 

.navileft {
	display: inline-block;
}
.navicenter {
	display: inline-block;
}
.naviright {
	display: inline-block;
}

.dis {
	opacity: 0.4;
	cursor: default;
}


/* =================================== */
/*  4. HEADER
/* =================================== */
#header {
	background: -webkit-linear-gradient(270deg, rgb(22 22 26) 0%, rgba(17, 17, 20, 0) 90%);
	background: linear-gradient(180deg, rgb(22 22 26) 0%, rgba(17, 17, 20, 0) 90%);
}
.header-con {
	position: relative;
	height: 80px;
	display: flex;
	align-items: center;
	gap: 20px;
}
.header-logo {
	max-width: 300px;
	min-width: 200px;
}

.header-logo img {
	height: 100%;
	width: auto;
	vertical-align: middle;
	max-width: 100%;
	max-height: 100%;
	max-height: 80px;
	border: 0;
}
.logo-title {
	position: absolute !important;
	margin: -1px;
	padding: 0;
	height: 1px;
	width: 1px;
	overflow: hidden;
	border: 0;
	clip: rect(0 0 0 0);
}

.header-menu {
	padding: 0px 40px 0px 10px;
	max-width: 55%;
}
.header-menu ul {
	margin-bottom: 0;
	display: flex;
	gap: 48px;
}
.header-menu ul li {
	display: inline-block;
}
.header-menu ul li a {
	color: inherit;
	font-weight: 600;
	white-space: nowrap;
}
.header-menu ul li a:hover {
	color: #fff;
}
.header-menu ul li a i {
	color: #363CD5;
	margin-right: 4px;
}

.header-search {
	width: 100%;
	max-width: 390px;
	margin-left: auto;
}

.search-form {
	position: relative;
}
.search-form input {
	border: 1px solid #363cd5;
	border-radius: 50px;
	background: #16161a;
	width: 100%;
	height: 100%;
	color: #e8e8e8;
	height: 48px;
	padding: 0 15px 0 15px;
	outline: none;
	transition: .3s all;
	margin-bottom: 0;
}
.search-form input:focus {
	border-color: #6066fb;
	box-shadow: 0 12px 25px 0 rgba(0, 0, 0, .21);
	transform: scale(1.001);
}
.search-form button {
	position: absolute;
	right: 0;
	top: calc(50% - 17px);
	background: none;
	border: 0;
	color: #363cd5;
	font-size: 28px;
	cursor: pointer;
	font-family: sans-serif;
}

.header-user a {
	border: 1px solid #363cd5;
	border-radius: 31px;
	background: #16161a;
	height: 48px;
	padding: 0 5px 0 6px;
	font-size: 25px;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.header-user a:hover {
	border-color: #6066fb;
	box-shadow: 0 12px 25px 0 rgba(0, 0, 0, .21);
}
.header-user .icon-login {
	margin-right: 2px;
	margin-top: 1px;
	display: block;
}

/* =================================== */
/*  5. FEATURED
/* =================================== */
.featured {
	position: relative;
}
.featured-hero {
	position: relative;
	/*max-width: 1349px;
	margin: 0 auto;*/
	margin-top: -15px;
	margin-bottom: 60px;

	visibility: hidden;
	max-height: 512px;
}
.featured-hero.slick-initialized {
	visibility: visible;
}
.featured-hero.slick-initialized .loading {
	visibility: hidden;
	opacity: 0;
}
.featured-hero:before,
.featured-hero:after {
	position: absolute;
	top: 0;
	content: ' ';
	background-color: #ececec;
	width: 15vw;
	height: 100%;
	z-index: 10;
}
.featured-hero:before {
	left: 0px;
	background: linear-gradient(to right, #15151a 0%, rgb(237 237 237 / 0%) 50%, rgba(255, 255, 255, 0) 100%);
}
.featured-hero:after {
	right: 0px;
	background: linear-gradient(to right, rgba(254, 255, 255, 0) 0%, rgb(236 236 236 / 0%) 50%, #15151a 100%);
}
.featured-hero .slick-item {
	padding-top: 60px;
}
.featured-hero .slick-slide .featured-item {
	background: linear-gradient(32deg, #000 25%, #111 50%);
	opacity: .6;
	filter: blur(2px);
}
.featured-hero .slick-current .featured-item {
	background: linear-gradient(32deg, #151519 25%, #1c1c24 50%);
	opacity: 1;
	filter: blur(0);
}
.featured-item {
	position: relative;
	background: linear-gradient(32deg, #151519 25%, #1c1c24 50%);
	border-radius: 6px;
	margin: 0px 10px;
	padding: 30px 15px;
	transition: .3s all;

	margin-bottom: 30px;
}
.featured-left {
	max-width: 60%;
	z-index: 2;
	position: relative;
	min-height: 220px;
}

.featured-hero .slick-slide .featured-image {
	max-width: 38%;
	background: none;
	visibility: visible;
}
.featured-hero .slick-slide .featured-image img {
	max-height: 320px;
}
.featured-hero .slick-current .featured-image {
	max-width: 45%;
	background: url(../img/ellipse.svg) no-repeat center center;
	background-size: contain;
}
.featured-image {
	z-index: 1;
	position: absolute;
	right: 0;
	bottom: 0;
	max-width: 45%;
	background: url(../img/ellipse.svg) no-repeat center center;
	background-size: contain;

	display: flex;
	align-items: center;
	justify-content: center;

	transition: .3s all;

	visibility: hidden;
}
.featured-image img {
	border-radius: 6px;
	height: auto;
	width: auto;
}
.featured-image .wp-post-image {
	position: relative;
}
.featured-image .ellipse {
	position: absolute;
	right: 20px;
	bottom: 70px;
	width: 200px;
	height: 230px;
	background: url(../img/ellipse.svg) no-repeat center center;
	background-size: contain;
	z-index: 0;
}

.featured-item h2 {
	color: #e8e8e8;
	font-weight: 600;
	margin-bottom: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* Number of lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.featured-item p {
	color: #A5A5A5;
	font-weight: 500;
}
.featured-excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 2; /* Number of lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 52px;
}

.featured-item .buttons-con {
	margin-top: 40px;
	position: absolute;
	bottom: 0;
}


.slick-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	padding: 10px 0 30px;
	margin-bottom: 0;
}

.slick-dots li button {
	background: transparent;
	border: 1px solid;
	border-color: #3F46F4;
	border-radius: 50px;
	width: 15px;
	height: 15px;
	text-indent: -9999px;
	cursor: pointer;
}
.slick-dots li.slick-active button {
	background: #3F46F4;
	transform: scale(1.2);
}
.featured-child-hero .featured-item {
	background: linear-gradient(32deg, #151519 25%, #17171c 50%);
	margin: 0 0 30px;
}
.featured-child-hero .featured-item h2 {
	font-size: 24px;
}
.featured-child-hero .featured-image {
	max-width: 34%;
	visibility: visible;
}
.featured-child-hero .featured-image .ellipse {
	width: 180px;
	height: 180px;
	bottom: 27px;
}
.featured-child-hero .featured-image img {
	max-height: 270px;
}
.featured-child-hero .featured-left {
	min-height: 180px;
}
.featured-child-hero .featured-excerpt {
	-webkit-line-clamp: 2;
	min-height: 52px;
}

/* =================================== */
/*  6. SECTION ELEMENTS
/* =================================== */

/* PAGE */
.page-header {
	padding: 40px 0 20px;
	margin-bottom: 0 !important;
}
.page-header h1 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 10px;
}
.page-header h1 span {
	color: #a8a8a8;
	font-weight: 500;
	font-size: 28px;
}
.page-header h1 i {
	color: #3F46F4;
	font-size: 30px;
}
.page-header p {
	color: #a8a8a8;
}
.page-header .results-count {
	color: #a5a5a5;
}

.page-header .page-tax-title {
	color: #a5a5a5;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
}


/* HEAD ITEM */
.top-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 35px;
}
.top-head h2,
.top-head h3,
.top-head .title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 0;
}
.top-head h2 i,
.top-head h3 i,
.top-head .title i {
	color: #363CD5;
	font-size: 28px;
	margin-right: 5px;
}
.top-head i:before {
	margin-left: 0;
}
.top-head.thin h2,
.top-head.thin h3,
.top-head.thin .title {
	text-transform: uppercase;
	font-size: 20px;
}
.top-head.thin h2 i,
.top-head.thin h3 i,
.top-head.thin .title i {
	font-size: 22px;
	margin-right: 4px;
}


.top-head .arrows .btn {
	padding: 4px 8px 4px 10px;
	border-radius: 4px;
	margin-left: 10px;
	cursor: pointer;
}

.top-head .arrows > div {
	display: none;
}
.top-head .arrows > div.active {
	display: block;
}

/* MANGA BOX */
.manga-box {
	position: relative;
	margin-bottom: 30px;
}

.manga-box .poster {
	padding-bottom: 150%;
	position: relative;
	border-radius: 3px;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .28);
}
.manga-box .icons {
	left: 5%;
	top: 3%;
	z-index: 2;
	position: absolute;
}
.manga-box .icons .btn {
	padding: 2px 14px;
	border-radius: 4px;
	font-size: 13px;
	text-transform: uppercase;
}
.manga-box .poster .img {
	width: 100%;
	height: 100%;
	position: absolute;
	border-radius: 3px;
	margin: 0;
	padding: 0;
	background: #2d2f34;
}
.manga-box .poster .img img {
	width: 100%;
	height: 100%;
	display: block;
	float: left;
	background-size: 100%;
	border-radius: 3px;
}
.manga-box .details {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;

	background: rgb(22 22 26 / 60%);
	background: linear-gradient(0deg, rgb(17 18 24) 0%, rgb(17 18 24) 15%, rgb(0 0 0 / 0%) 100%);

	padding: 40px 15px 10px 15px;
}
.manga-box .details .title {
	font-size: 16px;
	line-height: 18px;
	font-weight: 600;
	color: #e8e8e8;
	margin-bottom: 5px;
	opacity: 1;

	display: -webkit-box;
	-webkit-line-clamp: 2; /* Number of lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.manga-box .details .category {
	font-size: 12px;
	font-weight: 600;
	opacity: 1;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.manga-box .details .read-now {
	visibility: hidden;
	opacity: 0;
	transition: .3s all;
	position: absolute;
	bottom: 15px;
	left: 15px;
	right: 15px;
	text-align: center;
	padding: 6px 15px;
}
.manga-box:hover .details .title,
.manga-box:hover .details .category {
	visibility: hidden;
	opacity: 0;
}
.manga-box:hover .details .read-now {
	visibility: visible;
	opacity: 1;
}

.ajax-remove-item {
	display: block;
	text-align: center;
	margin-top: -20px;
	margin-bottom: 30px;
}

/* WHATS NEWS SECTION */
.whats-new-slider .slick-dots li.slick-active button {
	transform: none;
}
.whats-new-slider .slick-dots li button {
	width: auto;
	height: auto;
	border-radius: 3px;
	padding: 8px 14px;
	color: #e8e8e8;
	text-indent: 0;
	transition: .3s all;
}
.whats-new-slider .slick-dots li:hover button {
	transform: translateY(-1px);
}

/* TRENDING ITEMS SECTION */

.trending-item {
	display: flex;
}

.trending-item .rank {
	width: 40px;
	flex: 0 0 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 600;
}

.trending-item .poster {
	width: 80px;
	height: 120px;
	display: inline-block;
	float: left;
	margin-right: 10px;
	padding-bottom: 0;
}
.trending-item .poster img {
	border-radius: 3px;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .28);
	height: auto;
}

.trending-item .details {
	display: flex;
	height: 100%;
	align-items: center;
	margin-left: 80px;
	padding-left: 6px;
}
.trending-item .details-con {
	color: #e8e8e8;
}
.trending-item .details .title {
	font-weight: 600;
	margin-bottom: 5px;
	transition: .3s all;
	display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
}
.trending-item:hover .details .title {
	color: #363CD5;
}
.trending-item .details .counts {
	font-size: 14px;
	display: flex;
	gap: 15px;
	color: #A5A5A5;
	transition: .3s all;
}
.trending-item:hover .details .counts {
	color: #e8e8e8;
}
.trending-item .details .counts span {
	text-align: center;
}

.trending-item .details .counts i {
	margin-right: 5px;
}
.trending-item .details .fav-count i {
	color: #E35959;
}
.trending-item .details .mal-rate i {
	color: #CB9740;
}

.trending-item .details .category {
	font-size: 12px;
	color: #3F46F4;
	text-transform: uppercase;
	display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
}

.trending-item .details .bottom {
	height: 45px;
	display: flex;
	width: 100%;
	align-items: center;
	position: relative;
}

.trending-item:hover .read-now {
	visibility: visible;
	opacity: 1;
}
.trending-item .read-now {
	visibility: hidden;
	opacity: 0;

	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
	padding: 6px 15px;

	min-width: 170px;
}

.side-trending .trending-item .poster {
	width: 66px;
	height: 98px;
}
.side-trending .rank {
	display: none;
}
.side-trending .seperator:last-child {
	display: none;
}


/* SPERATOR */
.seperator {
	display: block;
	height: 2px;
	margin: 17px 0;
	background: rgb(17,17,20);
	background: linear-gradient(90deg, rgba(17,17,20,0) 0%, rgba(89,91,227,1) 17%, rgba(17,17,20,0) 100%);
	opacity: .4;
}
.seperator:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

/* CHAPTER BOX */

.chapter-box {
	padding: 15px;
	border-radius: 4px;
	border: 1px solid #363CD5;
	display: block;
	position: relative;
	margin-bottom: 30px;
}

.chapter-box .poster {
	width: 130px;
	position: relative;
}
.chapter-box .poster .icons {
	left: 5%;
	top: 3%;
	z-index: 2;
	position: absolute;
	text-transform: uppercase;
}
.chapter-box .poster .icons .btn {
	font-size: 12px;
	padding: 2px 14px;
	font-weight: 300;
}
.chapter-box .poster .img img {
	width: 100%;
	height: auto;
	display: block;
	float: left;
	background-size: 100%;
	border-radius: 3px;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .28);
}
.chapter-box .details {
	margin-left: 150px;
	margin-bottom: 7px;
}
.chapter-box .details div.title {
	font-weight: 500;
	padding: 15px 0;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.chapter-box .details .title a {
	color: #e8e8e8;
}
.chapter-box .details .title a:hover {
	color: #545aef;
}

.chapter-box .chapter-list {
	padding-bottom: 30px;
	height: 110px;
}

.chapter-box .chapter-item {
	display: block;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.chapter-box .chapter-item a {
	font-size: 14px;
	font-weight: 500;
	color: inherit;
}
.chapter-box .chapter-item a:hover {
	color: #545aef;
}
.chapter-box .bottom {
	position: absolute;
	bottom: 15px;
	right: 15px;
	font-size: 14px;
	color: #A5A5A5;
}
.chapter-box .bottom i {
	color: #363CD5;
	margin-left: 7px;
}

.country-flag {
	display: inline-block;
	width: 24px;
	border-radius: 3px;
	vertical-align: sub;
	margin-right: 8px;
}

.chapter-tabs {
	display: flex;
	gap: 13px;
}
.chapter-tab {
	cursor: pointer;
	opacity: .4;
	background: none;
	border: 0;
	font-size: 16px;
	color: #e8e8e8;
}
.chapter-tab.active,
.chapter-tab:hover {
	opacity: 1;
}
.chapter-tab:disabled:hover {
	opacity: .4;
	cursor: default;
}

/* HOME TABS */
.tabs .tabs-buttons {
	display: flex;
	gap: 50px;
	padding-bottom: 10px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.tabs .tabs-buttons::-webkit-scrollbar {
	display: none;
}
.tabs .tab {
	font-size: 20px;
	font-weight: 600;
	color: #A5A5A5;
}
.tabs .tab.active,
.tabs .tab:hover {
	color: #e8e8e8;
}

.tab-wrap {
	height: 0px;
	overflow-y: hidden;
}
.tab-wrap.active {
	height: auto;
	overflow-y: inherit;
}

.tab-slider {
	margin: 0 -15px;
	visibility: hidden;
}
.tab-slider.slick-initialized {
	visibility: visible;
}
.tab-item {
	padding: 0px 15px;
}
.tab-slider .slick-track {
	margin-left: 0;
}

/* =================================== */
/*  7. SINGLE DETAILS
/* =================================== */

.cover-image {
	height: 300px;
	background-color: #000;
	margin-bottom: -100px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 5%;

	position: relative;
}
.cover-image .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: linear-gradient(180deg, rgb(28 28 44 / 95%) 0, rgb(27 27 42 / 95%));
	z-index: 0;
}
.cover-image.empty {
	height: 0;
	background: none;
}

.manga-details {
	margin-bottom: 80px;
}

.details-left-con {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.manga-details .title {
	margin-bottom: 20px;
	min-height: 82px;
}
.manga-details h1 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 10px;
}

.alternate-title-on {
	margin-top: -20px;
}
.alternate-title {
	margin-top: -15px;
	margin-bottom: 10px;
	font-weight: 600;
	color: #bfbfbf;

	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.manga-details .buttons {
	display: flex;
	gap: 40px;
}
.manga-details .status {
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 600;
	color: #a8a8a8;
}

.manga-details .status.finished,
.manga-details .status.publishing{
	color: #469F00;
}

.manga-details .status.discontinued {
	color: #cf5151;
}
.manga-details .status.not-yet-published{
	color: #cfa051;
}

.excerpt-content,
.excerpt-content p {
	color: #e8e8e8;
}

.excerpt-content.show_less {
	display: -webkit-box;
	-webkit-line-clamp: 2; /* Number of lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.more-text {
	display: inline-block;
	margin-top: 10px;
	font-size: 12px;
	text-transform: uppercase;
	color: #a5a5a5;
}

.manga-details .stats {
	font-size: 14px;
	display: flex;
	gap: 30px;
	font-weight: 600;
}
.manga-details .stats b {
	font-weight: 500;
}
.manga-details .stats i {
	font-size: 14px;
	margin-right: 5px;
	color: #363CD5;
}


.details-right-con {
	display: flex;
	gap: 40px;
}

.manga-details .poster {
	background: #16161A;
	padding: 15px;
	width: 262px;
	height: 100%;
	flex: 0 0 262px;
	border-radius: 8px;
	margin-top: -50px;
	position: relative;
}
.manga-details .poster img {
	width: 100%;
	height: auto;
}
.manga-details .poster .add-favorite {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px 15px 25px;
	text-align: center;
	background: linear-gradient(0deg, rgb(17 18 24) 0%, rgb(17 18 24) 15%, rgb(0 0 0 / 0%) 100%) !important;
	color: #fff !important;
	font-weight: 600;
	font-size: 16px;
	border-radius: 0 !important;
	border: 0 !important;
}
.manga-details .poster .add-favorite:hover {
	transform: none !important;
}
.manga-rate {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 50px 0 30px;
}
.manga-rate .stars {
	display: flex;
	gap: 10px;
}
.manga-rate a {
	color: #999;
	font-size: 21px;
}
.manga-rate a:before {
	margin: 0;
}
.manga-rate .number {
	font-size: 14px;
	margin-left: 10px;
}
.manga-rate .number b {
	font-size: 32px;
}

.manga-rate a span {
	display: none;
}
.manga-rate a.fullStar,
.manga-rate a.tmp_fs {
	color: #CB9740;
}
.manga-rate a.tmp_es {
	color: #999;
}
.manga-rate .success {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1c1c2cb8;
	border-radius: 8px;
}

.meta-item {
	margin-bottom: 5px;
	display: flex;
}
.meta-item .meta-title {
	display: inline-block;
	width: 100px;
	flex: 0 0 100px;
	font-size: 14px;
	color: #a5a5a5;
}
.meta-item .meta-content {
	font-weight: 600;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    display: -webkit-box;
}
.meta-item .meta-content a {
	color: #e8e8e8;
}
.meta-item .meta-content a:hover {
	color: #545aef;
}

/* CHAPTER LIST */

.chapter-list-inner-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.chapter-list-inner-head .right {
	display: flex;
	align-items: center;
	gap: 40px;
}
.chapter-search {
	min-width: 290px;
}
.chapter-search input {
	width: 100%;
	background: #17182A;
	padding: 16px;
	border-radius: 8px;
	box-shadow: rgb(0 0 0 / 50%) 0px 5px 35px -15px;
	margin-bottom: 0;
}
.manga-select-lang {
	min-width: 164px;
}
.manga-select-lang li {
	display: none;
}

.list-box {
	background: #191B28;
	border-radius: 8px;
	padding: 15px;
	box-shadow: rgb(0 0 0 / 50%) 0px 5px 35px -15px;
	position: relative;
}
.list-box ul {
	margin-bottom: 0;
}
.list-box ul li {
	margin-bottom: 15px;
}
.list-box ul li:last-child {
	margin-bottom: 0;
}
.list-box ul li a {
	display: flex;
	justify-content: space-between;
	background: #17182A;
	border-radius: 8px;
	padding: 15px 20px;
	color: #e8e8e8;
}
.list-box ul li a:hover {
	background: #363CD5;
}
.list-box ul li .right {
	font-size: 12px;
	color: #a8a8a8;
	font-weight: 600;

	display: flex;
	align-items: center;
	gap: 40px;
}
.list-box ul li .right span {
	display: inline-flex;
	white-space: nowrap;
	gap: 10px;
}
.list-box ul li .read-now {
	text-transform: uppercase;
	color: #676cec;
}
.list-box ul li a:hover .read-now {
	color: #e8e8e8;
}
.list-box ul li .title {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-right: 40px;
}
.chapter-list.show-volume ul li,
.chapter-list.show-volume .chapter-item,
.chapter-list.show-volume .select-item-content li {
	display: none;
}
.chapter-list.show-volume ul li.has-volume,
.chapter-list.show-volume .chapter-item.has-volume,
.chapter-list.show-volume .select-item-content li.has-volume {
	display: block;
}
.chapter-list.show-volume ul li.has-volume .title::before,
.chapter-list.show-volume .chapter-item.has-volume .title::before,
.chapter-list.show-volume .select-item-content li.has-volume .text::before {
	content: attr(data-vol-title);
	font-weight: 700;
	display: inline-block;
	color: #a8a8a8;
	margin-right: 8px;
}

/* COMMENTS */
.comment-filter {
	display: inline-flex;
	gap: 25px;
}
.comment-filter a {
	color: #a8a8a8;
}
.comment-filter a:hover,
.comment-filter a.active {
	color: #e8e8e8;
}
.comment-count {
	margin-top: 5px;
	font-size: 16px;
	color: #a8a8a8;
	font-weight: 500;
}
#comments .col-left {
	flex: 0 0 40px;
}
#comments .col-right {
	padding-left: 15px;
	width: 100%;
}

#respond {
	display: flex;
	background: #1c1f30;
	border-radius: 8px;
	padding: 25px 25px 20px 25px;
	margin-bottom: 40px;
}
#commentform {
	display: flex;
}
#commentform input,
#commentform textarea {
	width: 100%;
	background: none;
	border: 1px solid #363CD5;
}
#commentform input {
	padding: 10px 15px;
	margin-bottom: 10px;
}
#commentform textarea {
	height: 146px;
}
.comment-form-comment {
	width: 100%;
	padding-right: 15px;
}
.comment-form-submit #submit {
	cursor: pointer;
	justify-content: center;
}
.comment-avatar img {
	border-radius: 50px;
}


.comment .comment {
	max-width: 90%;
	margin-left: auto;
}
.comment ol {
	position: relative;
}
.comment ol:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(6% - 4px);
	width: 2px;
	background: #a5a5a5;
}
.comment-inner {
	display: flex;
	background: #1c1f30;
	border-radius: 8px;
	padding: 25px 25px 20px 25px;
	margin-bottom: 15px;
}
.comment-meta {
	padding-left: 15px;
}
.comment-author {
	display: flex;
	gap: 15px;
	margin: 7px 0 10px;
}
.comment-reply {
	margin-left: auto;
}
.comment-body,
.comment-age {
	color: #a8a8a8;
}
.comment-body p:last-child {
	margin-bottom: 0;
}


/* =================================== */
/*  8. CHAPTER READ
/* =================================== */

#content-left {
	width: 230px;
	display: inline-block;
	float: left;
	padding: 20px 0;
	position: sticky;
	top: 20px;
}
#content-right {
	float: right;
	width: calc(100% - 260px);
	display: block;

	-webkit-transition: all .15s ease;
	transition: all .15s ease;
}

.chapter .header-logo {
	text-align: center;
}
.chapter .header-logo .logo-content {
	display: inline-block;
}

.chapter .manga-title {
	margin-top: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.chapter .manga-title h1 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0;
}
.chapter .manga-title h1 a {
	font-weight: 600;
	color: inherit;
}
.chapter .manga-title h1 a:hover {
	color: #545aef;
}
.chapter .manga-title h1 strong {
	display: block;
}
.chapter .manga-title i {
	font-size: 18px;
	color: #363CD5;
	margin-left: 15px;
}

.chapter .seperator {
	height: 1px;
	margin: 40px 0;
}

.chapter .chapter-tabs {
	font-size: 18px;
	gap: 40px;
	margin-bottom: 15px;
	align-items: center;
	justify-content: center;
}
.chapter .arrows {
	padding: 10px 0;
	display: flex;
	justify-content: space-around;
}
.chapter .arrows button {
	background: none;
	border: 0;
	color: #e8e8e8;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-family: 'DM Sans', sans-serif;
}
.chapter .arrows button i {
	font-size: 18px;
	color: #363CD5;
}

.chapter .select-item {
	width: 100%;
	margin-bottom: 10px;
}
.chapter .select-item .arrow {
	float: right;
	margin-left: 0;
}


.chapter-image-content {
	background: #191B28;

	min-height: 400px;
	border-radius: 8px;

	padding: 30px 30px;
	margin-bottom: 30px;
}
.chapter-image-content .arrows button {
	font-weight: 600;
	font-size: 16px;
}

.chapter-navigation {
	margin-top: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.chapter-navigation .btn {
	padding: 2px 8px !important;
}
.chapter-navigation .btn i {
}

.chapter-mobile-navigation-area {
	display: none;
}


.chapter-pagenavi {
	position: relative;
}
.chapter-pagenavi .count {
	font-size: 13px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.chapter-images .chapter-item {
	position: relative;
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	cursor: default;
}
.chapter-images .chapter-item img {
	height: auto;
}
.chapter-images .slick-list {
	transition: all .5s ease;
}
.chapter-images .slick-list .chapter-item {
	cursor: grab;
}
.chapter-images .slick-list .chapter-item img {
	display: inline-block;
	height: auto;
}

/* chapter buttons */
.chapter-buttons .btn {
	border-radius: 8px !important;
	background: #17182A !important;
	padding: 12px !important;
	font-weight: 400 !important;
	color: #a8a8a8 !important;
	display: block !important;
	margin-bottom: 10px;
}
.chapter-buttons .btn:hover {
	color: #e8e8e8 !important;
}
.chapter-buttons .btn i {
	color: #3F46F4;
	margin-right: 10px;
	font-size: 18px;
}
.chapter-buttons .btn.active {
	background: #3F46F4 !important;
	color: #fff !important;
}
.chapter-buttons .btn.active i {
	color: #fff !important;
}

/* comment */
.chapter .comments-area {
	display: none;
}
.chapter .comments-area.active {
	display: block;
}

/* report */

#report {
	position: relative;
	padding: 30px 20px;
	padding-top: 10px;
}
#report textarea {
	resize: vertical;
	min-height: 80px;
}


/* FILTER */

#filter-form {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}
#filter-submit {
	display: inline-flex !important;
	width: auto !important;
	margin-left: auto;
}


/* =================================== */
/*  9. MODAL
/* =================================== */
.modal {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999999;
	overflow-y: auto;
	font-size: 13px;

	-webkit-transition: all .15s ease;
	transition: all .15s ease;
}

.modal-bg {
	position: fixed;
	top: 0;
	left: 0;
	right: 17px;
	bottom: 0;
	z-index: 1;

	background-color: transparent;
	background-image: linear-gradient(90deg, rgba(17,17,20,0.16) 0%, rgba(89,91,227,0.10) 40%, rgba(17,17,20,0.16) 100%);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);

}
.modal-inner {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;

	width: 362px;
	border-radius: 5px;
	margin-left: -162.5px;
	overflow: hidden;

	background: #0d0d15;
	box-shadow: 0 4px 80px 6px rgba(0, 0, 0, .85);
	color: #fff;


}

.modal-header {
	padding: 22px 20px;
	box-sizing: border-box;
	text-align: center;
	max-height: 100px;
}
.modal-header .logo-content {
	display: block;
	max-width: 100%;
	max-height: 100%;
	margin: 0 auto;
	background-size: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.modal-header .logo-content img {
	max-height: 100%;
	max-width: 190px;
}

.modal-footer {
	padding: 15px 25px;
	background: #0b0b13;
	text-align: center;
	font-size: 14px;
	color: #ccc;
}
.modal-footer a {
	color: #fff;
	margin-left: 5px;
}

.modal input,
.modal textarea {
	width: 100%;
	box-sizing: border-box;
	display: block;
	padding: 12px 18px;
	margin-bottom: 10px;
	border: 0;
	border-radius: 4px;
	background: transparent;
	border: 1px solid #363CD5;
	box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.15);
	color: #e8e8e8;
	outline: none;
}

.modal .title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}

.modal .submit-button {
	width: 100%;
	margin-top: 20px;
	justify-content: center;
	font-size: 16px;
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.62);
	border-radius: 50px !important;
}
.modal .submit-button:hover {
	opacity: .8;
}
.register-form, .login-form {
	display: block;
	padding: 30px 24px;
}

.login-form .lost-password {
	text-align: center;
	margin-top: 20px;
	font-size: 14px;
}

.modal .info {
	margin-top: 0;
	text-align: center;
}

.message-header {
	padding-bottom: 10px;
	color: #F3D872;
	font-size: 14px;
	display: block !important;
}
.message-content {
	color: #fff;
	padding: 24px 20px;
	line-height: 16px;
	font-size: 13px;
}
.message-footer {
	padding: 12px 20px;
	line-height: 16px;
	background: #0b0b13;
}
.message-footer a {
	margin-left: 5px;
}
.message-close {
	position: absolute;
	bottom: 5px;
	right: 0;
	display: inline-block;
	padding: 4px 10px;
	margin: 0px 15px 5px;
	border-radius: 4px;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 1px;
	background: rgba(0, 0, 0, 0.25);
	cursor: pointer;
}

.modal .success {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	text-align: center;
	padding: 30px;
	background: rgb(0 0 0 / 80%);
	font-size: 20px;
}

/* =================================== */
/*  10. FOOTER
/* =================================== */
#footer {
	background: linear-gradient(354deg, rgb(23 24 47 / 95%) 25%, rgb(24 24 34 / 0%) 65%);
	padding: 100px 0 35px;
}

#footer a {
	color: #e8e8e8;
}
#footer a:hover {
	color: #545aef;
}

.footer-menu ul {
	display: inline-flex;
	gap: 40px;
	row-gap: 20px;
	column-gap: 40px;
	margin-bottom: 0;
}
.footer-menu ul li a {
	font-weight: 600;
}

.footer-socials {
	display: flex;
	gap: 10px;
}
.social-icon {
	border: 2px solid #e8e8e8;
	border-radius: 50px;
	font-size: 18px;
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.social-icon:hover {
	color: #e8e8e8 !important;
	transform: translateY(-1px);
}
.social-icon .icon-instagram {
	margin-top: 1px;
}
.social-icon .icon-discord:before {
	width: auto;
}
.social-icon .icon-reddit:before {
	width: auto;
}

.footer-head,
.footer-bottom {
	display: flex;
	justify-content: space-between;
}
.footer-bottom  {
	margin-top: 30px;
}

.footer-bottom,
#footer .footer-bottom a {
	color: #a5a5a5;
}
#footer .footer-bottom a:hover {
	color: #545aef;
}

.up-button {
	opacity: 0;
	visibility: hidden;
	cursor: pointer;
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background: #3c3e6f;
	border-radius: 100px;
	padding: 10px;
	box-shadow: 0px 6px 18px 4px rgb(0 0 0 / 26%);
	transition: all .15s ease;
}
.up-button.active {
	opacity: 1;
	visibility: visible;
}

/* CALENDAR */

.calendar .top-head {
	margin-bottom: 20px;
}
.calendar h3 {
	text-align: center;
}
.calendar .info-content {
	border-radius: 8px;
	text-align: center;
}
.calendar .info-content i {
	display: block;
}
.calendar ul {
	margin-bottom: 0;
}

@media (min-width: 992px) {
	.col-calendar {
		flex: 0 0 14.28%;
		max-width: 14.28%;
	}
}
.col-calendar {
	padding-top: 15px;
	padding-bottom: 10px;
}
.col-calendar.active {
	box-shadow: 0px 0px 16px 10px rgb(0 0 0 / 20%);
	background: #1a1a2a;
	border-radius: 8px;
}

.calendar-box {
	position: relative;
	border: 1px solid #363cd5;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 5px;
	height: 140px;
}
.calendar-box .poster.mascot-on {
	text-align: right;
	padding-top: 20px;
	margin-bottom: -7px;
}
.calendar-box .poster.mascot-on .img {
	display: inline-block;
	max-width: 75%;
}
.calendar-box img {
	height: auto;
	display: inline-block;
	min-height: 110px;
}
.calendar-box .poster .img {
	text-align: right;
	margin-bottom: -7px;
}

.calendar-box .title {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	color: #fff;
	padding: 0px 10px 5px;

	background: linear-gradient(180deg, rgb(17 18 24 / 75%) 0%, rgb(17 18 24 / 75%) 15%, rgb(0 0 0 / 0%) 100%);

	-webkit-line-clamp: 2;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	display: -webkit-box;
}
.calendar-box .title:before {
    content: '';
    display: block;
    padding: 5px;
}

.calendar-box .category {
	position: absolute;
	bottom: 10px;
	color: #fff;
	padding: 0px 10px;
	font-size: 13px;
	opacity: .8;
	-webkit-line-clamp: 1;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	display: -webkit-box;
}

.calendar-box:hover .read-now {
	opacity: 1;
	visibility: visible;
}
.calendar-box .read-now {

	opacity: 0;
	visibility: hidden;

	position: absolute;
	bottom: 5px;
	left: 8px;
	right: 8px;

	padding-left: 5px;
	padding-right: 5px;
	text-align: center;
}