@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*
font-family: 'Montserrat', sans-serif;
*/
/* -----------------------------------
	[01] GENERAL
	[02] BUTTON and FORM
	[03] SCROLL UP
	[04] THEME TOGGLE
	[05] FOOTER
	[06] HEADER TOP
	[07] HEADER MIDDLE
	[08] HEADER BOTTOM
		[08.1] CATEGORIES MENU
		[08.2] MAIN MENU
	[09] MOBILE HEADER
    [10] MOBILE MENU
	[11] MOBILE POPUP SEARCH
	[12] OFFCANVAS GENRES
	[13] LOGIN MODAL
	[14] COLLECTION PAGES
	[15] BOOK VIEW MODAL
------------------------------*/

:root {
	--main:#1c222e;
	--main-rgb:28,34,46;
	--primary:#ffffff;
	--light:#dfe7f2;
	--lightless:#f8f9fa;
	--gray:#8697a6;
	--blue:#0cbef5;
	--rose:#1c222e;
	--bg-light: rgba(0,0,0,0.05);
	--border-light: 1px solid rgba(0,0,0,0.1);
	--shadow-light: 0 0 20px rgba(0,0,0,0.2);
	--shadow-dark: 0 0 40px rgba(0,0,0,0.4);
	--filter-svg:invert(0) grayscale(0) brightness(0);
}
html[data-theme='light'] {
}

html[data-theme='dark'] {
	--main:#fff;
	--main-rgb:255,255,255;
	--primary:#1c222e;
	--light:#333943;
	--lightless:#282d39;
	--rose:#ffcc00;
	--bg-light: rgba(255,255,255,0.05);
	--border-light: 1px solid rgba(255,255,255,0.1);
	--shadow-light: 0 0 20px rgba(255,255,255,0.2);
	--shadow-dark: 0 0 40px rgba(255,255,255,0.4);
	--color-svg: invert(1);
	--filter-svg:invert(1) grayscale(100%) brightness(200%);
}

/*
This is example for future
[data-theme='comic'] {
--global-font-family: 'Comic Sans MS';
}
    <p data-theme="comic">
      Exemplo de um tema aplicado em partes específicas da página! Esse texto
      tem o tema "comic"!
    </p>

<img src="images/icons/genres.svg" class="filter-theme">
.filter-theme{
   filter: invert(42%) sepia(93%) saturate(1352%) hue-rotate(0deg) brightness(119%) contrast(119%);
}
*/
/* -----------------------------------
	[01] GENERAL
-------------------------------------*/
* {
	outline: none!important;
	transition: all 0.3s ease-out 0s;
}
*, *::after, *::before {
	box-sizing: border-box;
}
html {
	position: relative;
	min-height: 100%;
}
body {
	-webkit-tap-highlight-color: transparent;
	   -webkit-text-size-adjust: 100%;
	width: 100%;
	background:var(--primary);
	color: var(--main);
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height:1.5;
	overflow-x: hidden;
}
@media (min-width: 992px) {
	body {
		margin-bottom:80px;
	}
	footer {
		position: absolute;
		bottom: 0;
		width: 100%;
		height: 80px;
	}
}
h1, h2, h3, h4, h5, h6 {
	margin: 30px 0;
	line-height: 1.4;
	font-family: 'Montserrat', sans-serif;
}
h6 {
	text-align: center;
}
a {
	color: var(--blue);
	text-decoration: none;
}
a:hover,
a:active,
a:focus{
	color: var(--rose);
	text-decoration: none;
}
a.active {
	color: var(--rose);
}
img {
	max-width: 100%;
}
section {
	padding: 20px 0 50px;
}
@media (max-width: 575px) {
	section {
		padding: 30px 0 40px;
	}
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
@media (min-width: 1200px) {
	.container-narrow {
		max-width: 1024px;
		width: 100%;
		margin-right: auto;
		margin-left: auto;
	}
}
.global-overlay.overlay-open {
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
	background: rgba(0,0,0,0.7);
	z-index: 999;
}
.sidebar-open {
	overflow: hidden;
}
::-moz-selection {
    background: var(--main);
	color: var(--primary);
}
::selection {
    background: var(--main);
	color: var(--primary);
}
/* -----------------------------------
	[02] BUTTON and FORM
-------------------------------------*/
.btn {
	border-radius: 10px;
	padding: 10px 20px;
}
.btn:hover {
	border-color: transparent;
}
.btn-blue{
	background-color:var(--blue);
	color: var(--primary);
}
.btn-blue:hover {
	background-color: var(--gray);
	color: var(--primary);
}
.btn-outline-book {
	color: var(--blue);
	border-color: var(--blue);
	margin: 10px;
}
.btn-outline-book:hover {
	color: var(--main);
	background-color: var(--blue);
	border-color: var(--blue);
}
.btn-outline-book:focus,
.btn-outline-book:active:focus,
.btn-outline-book.active:focus{
	box-shadow: none;
}
.btn-outline-book:active,
.btn-outline-book.active {
	color: var(--main);
	background-color: var(--blue);
	border-color: var(--blue);
}
.btn-outline-book:disabled,
.btn-outline-book.disabled {
	color: var(--gray);
	background-color: transparent;
}
/* -----------------------------------
	[03] SCROLL UP
-------------------------------------*/
#scrollUp {
	width: 60px;
	height: 34px;
	background: var(--gray);
	color: var(--main);
	right: 10px;
	bottom: 20px;
	border-radius: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#scrollUp:hover {
	background: var(--rose);
	color: var(--main);
}
/* -----------------------------------
	[04] THEME TOGGLE
-------------------------------------*/
.filter-theme {
	filter: var(--gray);
}
.theme-toggle-button {
	position: fixed;
	right: 10px;
	bottom: 60px;
	display: inline-block;
}
/* for use .theme-toggle-button in menu-bottom or footer
.theme-toggle-button {
	display: inline-block;
}
*/
.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.switch-box {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--gray);
	border-radius: 34px;
}
.switch-box:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: var(--primary);
	border-radius: 100%;
}
input:checked + .switch-box {
	background-color: var(--gray);
}
input:focus + .switch-box {
	box-shadow: none;
}
input:checked + .switch-box:before {
	transform: translateX(26px);
	background-color: var(--primary);
}
/* -----------------------------------
	[05] FOOTER
-------------------------------------*/
footer {
	padding: 25px 0;
	border-top: 1px dashed var(--gray);
	font-size: 0.8em;
}
.footer-block{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media (max-width: 991px) {
	.footer-block{
		justify-content: center;
		flex-wrap: wrap;
	}
}
.footer-list li{
	display: inline-block;
	margin: 5px 10px;
}
/* -----------------------------------
	[06] HEADER TOP
-------------------------------------*/
.flags-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.flags-list li{
	margin: 2px;
}
/* -----------------------------------
	[07] HEADER MIDDLE
-------------------------------------*/
.header-middle {
	padding: 30px 0;
}
.header-middle-block {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.search-field {
	display: flex;
	position: relative;
	justify-content: center;
}
.search-field input {
	padding: 0 70px 0 25px;
	border: var(--border-light);
	flex: 1 1 auto;
	height: 50px;
	margin: 0;
	width: auto;
	color: var(--main);
	background: transparent;
	border-radius: 10px;
}
.search-field input::-moz-placeholder {
	color: var(--gray);
}
.search-field input:-ms-input-placeholder {
	color: var(--gray);
}
.search-field input::placeholder {
	color: var(--gray);
}
.search-field .search-btn {
	position: absolute;
	top: 50%;
	right: 0;
	width: 60px;
	height: 50px;
	font-size: 20px;
	line-height: 50px;
	transform: translateY(-50%);
	text-align: center;
	background-color: transparent;
	border: none;
	color: var(--gray);
}
.search-field .search-btn:hover {
	color:var(--rose);
}
.right-toolbar	{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.login {
	cursor: pointer;
	position: relative;
	margin-right: 20px;
}
.login .dropdown-list {
	position: absolute;
	top: 100%;
	right: 0;
	width: 100px;
	transform: translateY(30px);
	opacity: 0;
	visibility: hidden;
	padding: 15px;
	z-index: 9;
	pointer-events: none;
	background:var(--primary);
	box-shadow: var(--shadow-light);
}
.login:hover .dropdown-list {
	opacity: 1;
	visibility: visible;
	pointer-events: visible;
	transform: translateY(0);
}
.login .dropdown-list li {
	margin-left: 0;
	padding: 0;
}
.login .dropdown-list li a {
	font-size: 0.9em;
	padding: 5px;
}

/* -----------------------------------
	[08] HEADER BOTTOM
-------------------------------------*/
.header-bottom {
	background: rgba(var(--main-rgb),0.05);
}
.header-sticky.is-sticky {
	-webkit-animation: 600ms ease-in-out 0s normal none 1 running fadeInDown;
		  animation: 600ms ease-in-out 0s normal none 1 running fadeInDown;
	background: var(--primary);
	box-shadow: var(--shadow-dark);
	left: 0;
	margin: auto;
	padding: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
}
@-webkit-keyframes fadeInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
/* -----------------------------------
	[08.1] CATEGORIES MENU
-------------------------------------*/
.categories_menu {
	position: relative;
}
.categories_title {
	height: 46px;
	border-radius: 10px;
	display: flex;
	background: var(--gray);
	padding: 0 24px;
	font-size: 1em;
	font-weight: 500;
	cursor: pointer;
	position: relative;
}
.categories_title h5 {
	display: flex;
	align-items: center;
	font-size: 1em;
	font-weight: 600;
	cursor: pointer;
	color: var(--primary);
	margin: 0;
}
.categories_title h5 i {
	line-height: 1;
	font-size: 1.2em;
	color: var(--primary);
	margin-right: 10px;
}
.categories_title h5::after {
	content: "\f107";
	color: var(--primary);
	display: inline-block;
	font-family: 'Line Awesome Free';
	position: absolute;
	font-size: 1em;
	line-height: 0px;
	right: 30px;
	top: 50%;
	transform: translatey(-50%);
}
.categories-menu-wrap {
	max-width: 270px;
	margin: 5px 0;
}
.categories-menu-wrap .categories_menu_toggle {
	display: none;
}
.categories_menu_toggle {
	padding: 15px 0 9px;
	box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.1);
	background: var(--gray);
	position: absolute;
	width: 100%;
	top: 115%;
	z-index: 9;
}
.categories_menu_toggle:before {
	content: "";
	border: 6px solid transparent;
	border-bottom-color: var(--primary);
	position: absolute;
	top: -12px;
	left: 11%;
}
.categories_menu_toggle > ul > li {
	position: relative;
	display: flex;
}
.categories_menu_toggle > ul > li > a {
	display: block;
	width: 100%;
	padding: 6px 20px;
	font-size: 0.9em;
	font-weight: 400;
	line-height: 1.8;
	text-transform: capitalize;
	cursor: pointer;
	color: var(--main);
}
.categories_menu_toggle > ul > li > a img {
	margin-right: 10px;
	max-width: 20px;
}
.categories_menu_toggle > ul > li > a i {
	float: right;
	line-height: 1.8;
	font-size: 1em;
}
.categories_menu_toggle > ul > li ul.categories_mega_menu.open {
	display: block;
	left: 0;
}
.categories_menu_toggle > ul > li ul.categories_mega_menu {
	position: absolute;
	top: 0;
	left: 110%;
	width: 210px;
	box-shadow: var(--shadow-light);
	background: var(--gray);
	padding: 10px 20px;
	overflow: hidden;
	z-index: 3;
	opacity: 0;
	visibility: hidden;
}
.categories_menu_toggle > ul > li:hover ul.categories_mega_menu {
	opacity: 1;
	visibility: visible;
	left: 100%;
}
.categories_menu_toggle > ul > li ul.categories_mega_menu > li {
	display: block;
}
.categories_menu_toggle > ul > li ul.categories_mega_menu > li:last-child {
	border-bottom: none;
}
.categories_menu_toggle > ul > li ul.categories_mega_menu > li > a {
	display: block;
	padding: 8px 0;
	font-size: 0.9em;
	color: var(--main);
}
.categories-more-less {
	border-top: var(--border-light);
	margin: 10px 18px 0;
	cursor: pointer;
}
.categories-more-less a {
	padding: 12px 0px !important;
	font-weight: 600 !important;
}
.categories_menu_toggle ul li a.less-show {
	display: none;
}
.categories_menu_toggle ul li.rx-change a.less-show {
	display: block;
}
.categories_menu_toggle ul li.rx-change a.more-default {
	display: none;
}
.categories_menu_toggle li.hide-child {
	display: none;
}
.categories_menu_toggle.mobile_categories_menu_toggle {
	display: block;
	top: 0;
	position: relative;
	box-shadow: none;
	padding-top: 0;
	background: var(--primary);
}
.categories_menu_toggle.mobile_categories_menu_toggle::before {
	display: none;
}
@media only screen and (max-width: 991px) {
	.categories_menu_toggle > ul > li {
		position: relative;
		flex-direction: column;
		border-bottom: var(--border-light);
	}
	.categories_menu_toggle > ul > li > a {
		position: relative;
		padding: 14px 20px;
	}
	.categories_menu_toggle > ul > li > a i {
		margin-top: 4px;
	}
	.categories_menu_toggle > ul > li ul.categories_mega_menu {
		width: 100%;
		top: 100%;
		max-height: 350px;
		border-top: 1px solid var(--light);
		padding: 0;
		display: none;
		opacity: inherit !important;
		visibility: inherit !important;
		left: inherit !important;
		overflow: auto;
		transition: unset;
		box-shadow: none;
		position: inherit;
	}
	.categories_menu_toggle > ul > li ul.categories_mega_menu > li {
		width: 100%;
		padding: 0;
		border-bottom: var(--border-light);
		background: var(--primary);
	}
	.categories_menu_toggle > ul > li ul.categories_mega_menu > li a {
		padding: 14px 20px;
		padding-left: 40px;
	}
	.categories_menu_toggle > ul > li.categories-more-less {
		border: none;
		margin: 5px 15px;
	}
	.categories-more-less a {
		padding: 8px 0px !important;
	}
}
@media only screen and (max-width: 991px) {
	.categories_menu_toggle {
		display: none;
	}
	.header-sticky.is-sticky .categories-menu-wrap {
		display: none;
	}
}
/* -----------------------------------
	[08.2] MAIN MENU
-------------------------------------*/
.main-menu ul > li {
	display: inline-block;
	position: relative;
	padding: 18px 0px;
	margin-right: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.main-menu ul > li {
		margin-right: 20px;
	}
}
.main-menu ul > li > a {
	display: block;
	font-size: 0.9em;
	font-weight: 600;
	color: var(--main);
	padding: 0;
	position: relative;
	transition: all 0.4s ease 0s;
}
.main-menu ul > li > a i {
	margin-left: 2px;
	font-size: 0.75em;
}
.main-menu ul > li:first-child {
	padding-left: 0;
}
.main-menu ul > li:hover > a {
	color: var(--blue) !important;
}
.main-menu ul > li:hover .sub-menu {
	visibility: visible;
	opacity: 1;
	top: 100%;
}
.main-menu .sub-menu {
	position: absolute;
	top: 120%;
	left: 0;
	width: 200px;
	padding: 15px;
	background: var(--primary);
	box-shadow: var(--shadow-light);
	text-align: left;
	z-index: 99;
	visibility: hidden;
	opacity: 0;
}
.main-menu .sub-menu > li {
	padding: 0;
	margin-right: 0;
	display: block;
}
.main-menu .sub-menu > li:first-child {
	margin-bottom: 0;
}
.main-menu .sub-menu > li > a {
	padding: 0;
	font-weight: 400;
	font-size: 0.9em;
	margin-bottom: 12px;
	color: var(--main) !important;
	text-transform: capitalize;
}
.main-menu .sub-menu > li > a::before {
	display: none;
}
/* -----------------------------------
	[09] MOBILE HEADER
-------------------------------------*/
.mobile-header {
	padding: 10px 0;
	box-shadow: var(--shadow-light);
}
.mobile-header-block {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.mobile-header-menu,
.mobile-header-account {
	display: flex;
	align-items: center;
}
.mobile-header-account {
	justify-content: flex-end;
}
.mobile-header-logo	{
	flex-shrink: 0;
}
.mobile-header-logo	img{width: 200px;}
@media only screen and (max-width: 575px) {
	.mobile-header-logo	img{width: 150px;}
}
@media only screen and (max-width: 400px) {
	.mobile-header-logo	img{width: 120px;}
}
.mobile-header-block i {
	color: var(--gray);
	font-size: 2em;
}
.mobile-search-popup {
	border: none;
	background: transparent;
	color: var(--main);
}
/*-------------------------------
    [10] MOBILE MENU
--------------------------------*/
.m-menu-side .mobile-menu-inner {
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	bottom: 0;
	left: -100%;
	width: 100%;
	max-width: 400px;
	background: var(--primary);
	text-align: left;
	z-index: 100;
	overflow-x: hidden;
	overflow-y: auto;
	visibility: hidden;
	opacity: 0;
}
.m-menu-side.open .mobile-menu-inner {
	visibility: visible;
	left: 0;
	opacity: 1;
	z-index: 999999999999999;
}
.side-close-icon {
	position: absolute;
	top: 0;
	right: 5px;
	font-size: 1.5em;
	color: var(--main);
	cursor: pointer;
	z-index: 99999999999999;
}
a.side-close-icon:hover {
	color: var(--rose);
}
.mobile-lan-curr-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-bottom: var(--border-light);
}
.mobile-lan-curr-nav > li {
	flex-grow: 1;
	flex-basis: 0;
	text-align: center;
	border-right: var(--border-light);
	cursor: pointer;
	font-size: 0.8em;
	position: relative;
	line-height: 40px;
}
.mobile-lan-curr-nav > li:last-child {
	border-right: none;
}
.mobile-lan-curr-nav > li i {
	font-size: 0.8em;
}
.mobile-lan-curr-nav > li .dropdown-list {
	position: absolute;
	top: 100%;
	left: 30px;
	width: 130px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	padding: 15px 15px 20px;
	z-index: 9;
	pointer-events: none;
	background-color: var(--primary);
	box-shadow: var(--shadow-light);
}
.mobile-lan-curr-nav > li .dropdown-list li {
	margin-left: 0;
	padding: 0;
	line-height: 24px;
}
.mobile-lan-curr-nav > li .dropdown-list li::before {
	display: none;
}
.mobile-lan-curr-nav > li .dropdown-list li a {
	color: var(--gray);
	font-size: 0.9em;
	display: block;
	padding: 2px 0 3px;
}
.mobile-lan-curr-nav > li .dropdown-list li a:hover {
	color: var(--rose);
}
.mobile-lan-curr-nav > li:hover .dropdown-list,
.mobile-lan-curr-nav > li:hover .cart-list {
	opacity: 1;
	visibility: visible;
	pointer-events: visible;
	transform: translateY(0);
}
.text-message p {
	text-align: center;
	padding: 10px 20px;
	font-size: 0.9em;
	display: block;
	border-bottom: var(--border-light);
	margin-bottom: 0;
}
.text-message p a {
	font-weight: 600;
}
.mobile-tab-menu {
	border-bottom: var(--border-light);
	margin: 0;
}
.mobile-tab-menu li {
	flex-grow: 1;
	flex-basis: 0;
	text-align: center;
	margin: 0;
	border-right: var(--border-light);
}
.mobile-tab-menu li:last-child {
	border: none;
}
.mobile-tab-menu li a {
	border-radius: 0;
	padding: 10px;
	display: block;
	background: var(--bg-light);
	border: 0;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--main);
	font-size: 0.9em;
}
.mobile-tab-menu li a[aria-selected=true] {
	color: var(--blue);
}
.offcanvas-navigation .has-children,
.offcanvas-navigation .sub-menu {
	position: relative;
}
.offcanvas-navigation .has-children.active .menu-expand:before,
.offcanvas-navigation .sub-menu.active .menu-expand:before {
	font-family: 'Line Awesome Free';
	content: "\f107";
}
.offcanvas-navigation .has-children.active > a,
.offcanvas-navigation .sub-menu.active > a {
	background-color: var(--bg-light);
}
.offcanvas-navigation > ul > li,
.offcanvas-navigation > ul > li.has-children {
	position: relative;
}
.offcanvas-navigation > ul > li.has-children .menu-expand {
	position: absolute;
	right: 0;
	top: 0;
	width: 50px;
	height: 51px;
	border-left: var(--border-light);
	color: var(--main);
	text-align: center;
	line-height: 40px;
	cursor: pointer;
	transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.offcanvas-navigation > ul > li.has-children .menu-expand:before {
	font-family: 'Line Awesome Free';
	font-weight: 900;
	content: "\f105";
	font-size: 0.6em;
	margin-top: 7px;
	display: block;
}
.offcanvas-navigation > ul > li.has-children .sub-menu a {
	border-bottom: var(--border-light);
	padding: 12px 15px;
	padding-left: 30px;
	display: flex;
}
.offcanvas-navigation > ul > li > a {
	border-bottom: var(--border-light);
	padding: 12px 15px;
	display: flex;
}

/* -----------------------------------
	[11] MOBILE POPUP SEARCH
-------------------------------------*/
.popup-search-wrapper {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background: var(--primary);
	box-shadow: var(--shadow-light);
	z-index: 9999999;
	opacity: 0;
	visibility: hidden;
}
.popup-search-wrapper.search-open {
	opacity: 1;
	visibility: visible;
}
.popup-search-wrapper .search-close-button {
	position: absolute;
	right: 10px;
	top: 5px;
	font-size: 1.5em;
	color: var(--main);
}
.popup-search-wrapper .search-close-button:hover {
	color:var(--rose);
}
.popup-search-wrapper .search-keywords-list {
	padding: 15px;
}
.popup-search-wrapper .search-keywords-list p {
	margin-bottom: 0;
}
.popup-search-wrapper .search-box {
	max-width: 776px;
	width: 100%;
	margin: 30px auto;
}
.popup-search-wrapper .input-wrapper {
	display: flex;
	padding: 0px;
	margin: 0 15px;
	border-bottom: 1px solid var(--gray);
}
.popup-search-wrapper .search-field {
	display: flex;
	position: relative;
	justify-content: center;
	border: none;
	padding: 10px 15px;
	border-radius: 0;
	margin: 0;
	color: var(--gray);
	background: transparent;
	width: 100%;
	height: 80px;
	font-size: 1.5em;
}
@media only screen and (max-width: 767px) {
	.popup-search-wrapper .search-field {
		height: 40px;
		font-size: 1.2em;
	}
}
.popup-search-wrapper .search-submit {
	background: transparent;
	color: var(--main);
	display: inline-block;
	vertical-align: middle;
	border: none;
	padding: 0 20px;
	border-radius: 0;
	line-height: 100%;
	font-size: 2em;
	cursor: pointer;
	position: static;
}
.popup-search-wrapper .search-submit:hover {
	color: var(--rose);
}
@media only screen and (max-width: 767px) {
	.popup-search-wrapper .search-submit {
		height: 40px;
		font-size: 1.4em;
	}
}
.popup-search-wrapper .header-search-popular li {
	display: inline-block;
}
.popup-search-wrapper .header-search-popular li a {
	padding: 0 5px;
	border: var(--border-light);
	border-radius: 3px;
	background: var(--lightless);
	display: block;
	text-decoration: none;
	font-size: 0.8em;
}
/* -----------------------------------
	[12] LOGIN MODAR
-------------------------------------*/
.login-register-modal .modal-dialog {
	max-width: 550px;
	border-radius: 0;
}
.login-register-modal .modal-content {
	border: none;
	border-radius: 0rem;
	padding: 15px;
	background: var(--primary);
}
.login-register-modal .button-close {
	background-color: transparent;
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	font-size: 1.5em;
	font-weight: 300;
	z-index: 999;
	color:var(--main);
}
.login-register-modal .button-close:hover {
	color: var(--rose);
}
.modal-logo {
	text-align: center;
	margin-bottom: 10px;
}
.modal-logo a {
	max-width: 194px;
}
.modal-box-wrapper, .myaccount-box-wrapper {
	background: var(--primary);
	width: 100%;
}
.modal-box-wrapper .modal-tabs ul .tab__item {
	width: 50%;
	text-align: center;
}
.modal-box-wrapper .modal-tabs ul .tab__item a {
	color: var(--main);
	font-size: 1em;
	font-weight: 500;
	text-transform: uppercase;
	padding: 12px 0;
	border-bottom: 2px solid var(--gray);
}
.modal-box-wrapper .modal-tabs ul .tab__item a.active {
	background: var(--primary);
	color: var(--rose);
	border-bottom: 2px solid var(--rose);
}
.modal-box-wrapper .content-modal-box {
padding: 20px 60px;
}
@media only screen and (max-width: 767px) {
	.modal-box-wrapper .content-modal-box {
		padding: 20px 20px;
	}
}
.modal-box-wrapper .content-modal-box .checkbox-wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.modal-box-wrapper .content-modal-box .checkbox-wrap label{
	margin-bottom: 0rem;
}
.modal-box-wrapper .content-modal-box .checkbox-wrap a {
	font-size: 0.9em;
}
.modal-box-wrapper .reg_text {
	text-align: center;
	font-size: 0.9em;
}
.account-form-box .single-input {
	margin-bottom: 10px;
}
.account-form-box .single-input input {
	padding: 8px 20px;
	text-align: left;
	width: 100%;
	color: var(--gray);
	border: var(--border-light);
	background: var(--primary);
}

/* -----------------------------------
	[13] OFFCANVAS GENRES
-------------------------------------*/
.offcanvas-genres .minigenres-inner {
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	width: 100%;
	max-width: 400px;
	color: var(--main);
	background: var(--primary);
	padding: 30px;
	text-align: left;
	box-shadow: var(--shadow-light);
	z-index: 100;
	opacity: 0;
	overflow-x: hidden;
	overflow-y: auto;
	visibility: hidden;
}
@media only screen and (max-width: 767px) {
	.offcanvas-genres .minigenres-inner {
		width: 300px;
		padding: 10px 15px 0 !important;
	}
}
.offcanvas-genres.open .minigenres-inner {
	visibility: visible;
	left: auto;
	right: 0;
	opacity: 1;
	z-index: 999999999999999;
}
.minigenres-inner .close-btn-box {
	text-align: right;
}
.minigenres-inner .close-button {
	color: var(--main);
	font-size: 1.5em;
	line-height: 0;
}
.minigenres-inner .close-button:hover {
	color: var(--rose);
}
.minigenres-inner h3 {
	margin: 0 0 20px;
}
.list-genre li{
    list-style:none;
    text-transform: capitalize;
    border-top:1px dotted var(--gray);
    padding:7px 0;
    cursor:pointer;
}
.list-genre .in li{
    border-top:none !important;
    margin-left:20px;
    font-size:1em;
}
.list-genre .in li:last-child{
	margin-bottom: 15px;
}
.list-genre li:hover{
    padding-left: 10px;
    cursor:pointer;
}
.list-genre .in li a{
	color: var(--gray);
}
.list-genre .in li a:hover{
	color: var(--blue);
}
.list-genre .badge {
    display: inline-block;
    min-width: 10px;
    padding: 5px 7px;
    font-size: 0.9em;
    font-weight: 600;
    line-height: 1;
    color: var(--main);
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: var(--light);
    border-radius: 10px;
    margin-top:0;
	float: right;
}

/* -----------------------------------
	[14] COLLECTION PAGES
-------------------------------------*/
.ad-block {
	padding: 20px 0;
	text-align: center;
}
.page-pagination {
	margin: 30px 0;
}
.page-pagination ul{
	justify-content: center;
}
.page-link {
	color: var(--main);
	background-color: var(--primary);
	border: var(--border-light);
}
.page-link:hover {
	z-index: 2;
	color: var(--blue);
	background-color: var(--lightness);
	border-color: var(--gray);
}
.page-link:focus {
	color: var(--main);
	background-color: var(--lightness);
	outline: 0;
	box-shadow: none;
}
.page-item.active .page-link {
	z-index: 3;
	color: #fff;
	background-color: var(--blue);
	border-color: var(--blue);
}
.page-item.disabled .page-link {
	color: var(--gray);
	pointer-events: none;
	background-color: var(--bg-light);
	border: var(--border-light);
}
.page-link {
	padding: 0.375rem 0.75rem;
	min-width: 40px;
}
.page-item:first-child .page-link {
	border-top-left-radius: 0.25rem;
	border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
	border-top-right-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
}
.collection-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}
.filter-select .nice-select {
	background: var(--primary);
	color: var(--main);
	border: var(--border-light);
	min-width: 250px;
}
.filter-select .nice-select.open .list {
	background: var(--primary);
	color: var(--main);
	border: var(--border-light);
	min-width: 250px;
}
.filter-select .nice-select.open .list li:hover{
	background: var(--light);
	color: var(--main);
}
.filter-select .nice-select.open .list li.option.selected.focus {
	background: var(--lightless);
	color: var(--main);
}
.book-collection {
	border-top: var(--border-light) !important;
	border-left: var(--border-light) !important;
}
.book-collection  [class*=col-]{
	padding: 0;
	border-right: var(--border-light);
	border-bottom: var(--border-light);
}
.collection-item {
	position: relative;
	padding: 10px 20px 0;
}
.collection-item-image {
	position: relative;
	text-align: center;
}
.collection-item-image{
	height: 300px;
}
.collection-item-image img{
	height: 100%;
}
.collection-item-content {
	margin-top: 20px;
	padding: 15px 0;
	font-size: 0.9em;
}
.collection-item-content li{
	margin: 7px 0;
}
.collection-item-content li.author{
	font-size: 1.2em;
	font-weight: 600;
}
.collection-item-content li.title{
	font-size: 1.2em;
	font-weight: 600;
	color: var(--gray);
}
.collection-icon {
	top: auto;
	opacity: 1;
	bottom: -34px;
	margin: 0;
	position: absolute;
	right: 0px;
	transition: all 0.5s ease-in-out;
	z-index: 100;
}
.collection-icon li {
	margin-bottom: 10px;
}
.collection-icon li.download-book a {
	color: var(--main);
	background: var(--gray);
}
.collection-icon li a {
	width: 40px;
	height: 40px;
	display:inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5em;
	border-radius: 100%;
	background: var(--light);
	color: var(--main);
}
.collection-icon li a:hover {
	color: var(--main);
	background: var(--blue);
}
/* -----------------------------------
	[15] BOOK VIEW MODAL
-------------------------------------*/
.book-modal .modal-dialog {
	max-width: 920px;
	border-radius: 0;
}
.book-modal .modal-content {
	border: none;
	border-radius: 0;
	padding: 8px;
	background: var(--primary);
}
.book-modal .modal-body {
	background: var(--primary);
}
.book-modal .button-close {
	background-color: transparent;
	border: none;
	position: absolute;
	right: 0;
	top: -10px;
	font-size: 1.5em;
	font-weight: 300;
	z-index: 999;
	color:var(--main);
}
.book-modal .button-close:hover {
	color:var(--rose);
}
.annotation-content {
	display: flex;
}
.annotation-img {
	flex-shrink: 0;
	width: 200px;
	margin-right: 30px;
}
@media only screen and (max-width: 767px) {
	.annotation-img {
		display: none;
	}
}
.annotation-text h5,
.annotation-text h3	{
	margin: 10px 0;
}
.annotation-text .annotation-box {
	font-size: 0.9em;
	color: var(--main);
}
.annotation-info-list li{
	display: inline-block;
	margin: 5px 20px 5px 0;
}
.annotation-info-list i{
	display: inline-flex;
	width: 40px;
	height: 40px;
	background: var(--light);
	border-radius: 100%;
	align-items: center;
	justify-content: center;
	font-size: 1.4em;
	margin-right: 5px;
}
.annotation-tags-list li {
	font-size: 0.8em;
	display: inline-block;
	margin: 5px;
}
.annotation-tags-list li.tags-title {
	font-weight: 600;
}
.annotation-tags-list li.tags-title:after {
	content: ":";
}
.annotation-tags-list li:not([class]):before {
	content: "#";
}

/* -----------------------------------
	[15] OFFCANVAS BOOK CONTENT
-------------------------------------*/
.offcanvas-bookmenu .bookmenu-inner {
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	width: 100%;
	max-width: 300px;
	color: var(--main);
	background: var(--primary);
	padding: 30px;
	text-align: left;
	box-shadow: var(--shadow-light);
	z-index: 100;
	opacity: 0;
	overflow-x: hidden;
	overflow-y: auto;
	visibility: hidden;
}
@media only screen and (max-width: 767px) {
	.offcanvas-bookmenu .bookmenu-inner {
		padding: 10px 15px 0 !important;
	}
}
.offcanvas-bookmenu.open .bookmenu-inner {
	visibility: visible;
	left: auto;
	right: 0;
	opacity: 1;
	z-index: 999999999999999;
}
.bookmenu-inner .close-btn-box {
	text-align: right;
}
.bookmenu-inner .close-button {
	color: var(--main);
	font-size: 1.5em;
	line-height: 0;
}
.bookmenu-inner .close-button:hover {
	color: var(--rose);
}
.bookmenu-inner h5 {
	margin: 0 0 20px;
}
/* -----------------------------------
	[16] BOOK PAGE
-------------------------------------*/
.header-page {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}

.header-page .logo {
	order: 0;
}
.header-page .book-info {
	order: 1;
}
.header-page .book-info li{
    padding-top: 10px;
}
.header-page .book-menu {
	order:2;
}
@media only screen and (max-width:1200px) {
	.header-page .logo {
		order: 0;
	}
	.header-page .book-info {
		order: 2;
		width: 100%;
		text-align: center;
		margin-top: 10px;
	}
	.header-page .book-menu {
		order:1;
	}
	.header-page {
		flex-wrap: wrap;
		gap:10px;
	}
}
.header-page .logo img{
	width: 150px;
	flex-shrink: 0;
}
.header-page .search-icon i{
	font-size: 2em;
	color: var(--gray);
}
.header-page .book-info li {
	display: inline-block;
	margin: 0 20px;
}
.header-page .book-info li a{
	/*color: var(--main);*/
}
.header-page .book-info li a i{
	color: var(--primary);
}
.header-page .book-info li i{
	display: inline-block;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	text-align: center;
	line-height: 1.2;
	font-size: 1.5em;
	background: var(--blue);
	margin-right: 10px;
}
.header-page .book-menu	a {
	display: flex;
	align-items: center;
}
.header-page .book-menu	i {
	color: var(--gray);
	font-size: 2em;
	display: inline-block;
	margin-right: 10px;
}

@media only screen and (max-width: 767px) {
	.header-page .logo img{
		width: 100px;
	}
	.header-page .search-icon{
		display: none;
	}
	.header-page .book-info li {
		margin: 0 5px;
	}
	.header-page .book-info li i{
		width: 25px;
		height: 25px;
		line-height: 1.4;
		font-size: 1.1em;
		margin-right: 3px;
	}
	.header-page .book-menu	a span{
		display: none;
	}
	.header-page .book-menu	i {
		font-size: 1.8em;
		margin-right: 0;
	}
}

.book-cover {
	text-align: center;
	margin: 30px 0;
}
.book-annotation {
	margin: 30px 0;
}
.book-btn-box {
	text-align: center;
}

/* MODAL */
.modal-theme .modal-content {
	background-color: var(--primary);
	color: var(--main);
	border: var(--border-light);
    font-size: 0.9em;
}
.modal-theme .modal-header {
	padding: 0 1rem;
	border-bottom: var(--border-light);
}
.modal-theme .modal-header h5{
    margin: 10px 0;
}
.modal-theme .modal-header .btn-close {
	color: var(--main);
	opacity: 0.5;
	filter: var(--filter-svg);
}
.modal-theme .btn-close:hover {
	color: var(--main);
	opacity: 0.75;
}
