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

@import url('https://fonts.googleapis.com/css2?family=Raleway: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: 'Raleway', sans-serif;
*/

/* -----------------------------------
	[01] GENERAL
	[02] SCROLL UP
	[03] OFFCANVAS
	[04] FOOTER
	[05] HEADER
		[05.1] CAFEDRA MENU
		[05.2] MAIN MENU
	[06] MOBILE VIEW
	[07] MOBILE MENU
	[08] SLIDER
	[09] INDEX PAGE
	[10] PAGES
	[11] ISOTOP GALLERY
	[12] LISTS
	[13] OBJECT
-------------------------------------*/

:root {
	--main:#474747;
	--main-rgb:71,71,71;
	--primary:#ffffff;
	--light:#dfe7f2;
	--lightless:#f8f9fa;
	--gray:#8697a6;
	--blue:#03a9f4;
	--rose:#ffcc00;
	--yellow: #1e2226;
	--red: #F51B38;
	--totalbooks: #ffcc00;
	--bg-light: rgba(0,0,0,0.05);
	--border-light: 1px solid rgba(0,0,0,0.1);
	--border-color-light:rgba(0,0,0,0.1);
	--shadow-light: 0 0 20px rgba(0,0,0,0.2);
	--btn-collection:#cfd7e1;
}
html[data-theme='light'] {

	/*--light:#dfe7f2;
	--lightless:#f8f9fa;
	--gray:#8697a6;
	--blue:#5368a6;
	--rose:#d93b92;
	--border-light: 1px solid rgba(0,0,0,0.1);
	--shadow-light: 0 0 20px rgba(0,0,0,0.2);*/
}

html[data-theme='dark'] {
	--main:#fff;
	--main-rgb:255,255,255;
	--primary:#0d1116;
	--light:#1e2226;
	--lightless:#191d22;
	--gray:#dfe7f2;
	--yellow: #ffcc00;
	/*--blue:#5368a6;*/
	--rose:#ffcc00;
	--totalbooks: #03a9f4;
	--border-light: 1px solid rgba(255,255,255,0.2);
	--border-color-light:rgba(255,255,255,0.2);
	--shadow-light: 0 0 20px rgba(255,255,255,0.2);
	--color-svg: invert(1) /*sepia(93%) saturate(1352%) hue-rotate(0deg) brightness(119%) contrast(119%)*/;

	--btn-collection:#35393c;
}

/*
[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: 'Raleway', 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: 'Raleway', sans-serif;
}
h6 {
	text-align: center;
}
a:hover,
a:active,
a:focus{
	color: var(--rose);
	text-decoration: none;
}
a {
	color: var(--blue);
	text-decoration: none;
}
img {
	max-width: 100%;
}
section {
	padding: 30px 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;
}
/* -----------------------------------
	[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-full {
	width: 100%;
	display: block;
}
.btn-small {
	padding: 8px 20px;
	font-size: 0.8em;
	border-color: transparent;
}

.btn-gray{
	background-color:var(--gray);
	color: var(--primary);
}
.btn-gray:hover {
	background-color: var(--gray);
	color: var(--primary);
}
.form-control {
	color: var(--main);
	background-color: var(--bg-light);
	border: var(--border-light);
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:focus {
	color: var(--main);
	background-color: var(--bg-light);
	border-color: var(--blue);
	box-shadow: var(--shadow-light);
}
.form-select {
	color: var(--main);
	background-color: var(--bg-light);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");

	border: var(--border-light);
}
.form-select:focus {
	border-color: var(--blue);
	outline: 0;
	box-shadow: var(--shadow-light);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
	padding-right: 0.75rem;
	background-image: none;
}
.form-select:disabled {
	background-color: #e9ecef;
}
.form-select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #212529;
}
.book-select option {
	background-color: var(--lightless);
	color: var(--main);
}
/* -----------------------------------
	[03] SCROLL UP
-------------------------------------*/
#scrollUp {
	width: 60px;
	height: 34px;
	background: var(--light);
	color: var(--main);
	right: 10px;
	bottom: 20px;
	border-radius: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#scrollUp:hover {
	background: var(--gray);
	color: var(--primary);
}
/* -----------------------------------
	[04] THEME TOGGLE
-------------------------------------*/
.filter-theme {
	filter: var(--color-svg);
}
.theme-toggle-button {
	position: fixed;
	bottom: 80px;
	right: 10px;
	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(--light);
	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(--light);
}
input:focus + .switch-box {
	box-shadow: none;
}
input:checked + .switch-box:before {
	transform: translateX(26px);
	background-color: var(--primary);
}
/* -----------------------------------
	[04] 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;
}

.footer-list li{
	display: inline-block;
	margin: 5px 10px;
}
@media (max-width: 991px) {
	.footer-block{
		display: block;
	}
	.footer-list li{
		margin: 5px 20px 5px 0;
	}
}
/* -----------------------------------
	[05] HEADER
-------------------------------------*/
.flags-list {
	text-align: center;
}
.flags-list li{
	margin: 2px;
	display: inline-block;
}
/* -----------------------------------
	[05.1] HEADER MIDDLE
-------------------------------------*/
.header-middle {
	padding: 0 0 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: #455a64;
}
@media (max-width: 991px) {
	.search-field .search-btn {
		line-height: 0;
		padding-right: 30px;
		margin-top: -5px;
	}
}
@media (max-width: 767px) {
	.search-field .search-btn {
		line-height: 80px;
		padding-right: 20px;
		margin-top: 0;
	}
}
.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;
}

/* -----------------------------------
	[05.2] HEADER BOTTOM
-------------------------------------*/
.header-bottom {
	background: var(--light);
}
.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(--light);
  box-shadow: var(--shadow-light);
  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;
}
/* -----------------------------------
	[05.2.1] CATEGORIES MENU
-------------------------------------*/
.categories_menu {
	position: relative;
}
.categories_title {
	height: 46px;
	border-radius: 10px;
	display: flex;
	background: var(--btn-collection);
	padding: 0 20px;
	font-size: 1em;
	font-weight: 500;
	/*cursor: pointer;*/
	position: relative;
	text-align: center;
}
.categories_title h5 {
	display: flex;
	align-items: center;
	font-size: 0.8em;
	font-weight: 600;
	/*cursor: pointer;*/
	color: var(--primary);
	margin: 0;
	text-align: center;
}
.categories_title h5 ul li{
	margin-right: 10px;
}
.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(--primary);
	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;
}
.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(--primary);
	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;
}
.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;
}
.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.open {
		background-color: var(--lightless);
	}
	.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: var(--border-light);
		padding: 0;
		display: none;
		opacity: inherit !important;
		visibility: inherit !important;
		left: inherit !important;
		overflow: auto;
		transition: unset;
		box-shadow: inherit;
		position: inherit;
	}
	.categories_menu_toggle > ul > li ul.categories_mega_menu > li {
		width: 100%;
		padding: 0;
		border-bottom: var(--border-light);
	}
	.categories_menu_toggle > ul > li ul.categories_mega_menu > li a {
		padding: 14px 20px;
	}
	.categories_menu_toggle > ul > li.menu_item_children > a i {
		transform: rotate(0deg);
	}
	.categories_menu_toggle > ul > li.menu_item_children.open > a i {
		transform: rotate(90deg);
	}
	.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;
	}
}
/* -----------------------------------
	[05.2.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/*,
.main-menu ul > li:hover .mega-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;
}

.main-menu.filter-menu ul {
	text-align: right;
}
.main-menu.filter-menu ul li{
	margin-right: 0;
	margin-left: 20px;
}
/* -----------------------------------
	[06] 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);
}

/* -----------------------------------
	[06.1] MOBILE POPUP SEARCH
-------------------------------------*/
.popup-search-wrapper {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 400px;
	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: 0;
	top: 5px;
	font-size: 2em;
	width: 35px;
	height: 35px;
	line-height: 35px;
}
.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: 60px auto 0;
}
.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);
	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;
}

/*-------------------------------
    - Mobile Menu Css
--------------------------------*/
.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: 0;
	width: 35px;
	height: 35px;
	font-size: 1.1em;
	color: var(--main);
	cursor: pointer;
	z-index: 99999999999999;
}
.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;
	margin-top: 35px;
}
.mobile-tab-menu li {
	flex-grow: 1;
	flex-basis: 0;
	text-align: center;
	margin: 0;
	border-right: var(--border-light);
	border-top: var(--border-light);
	padding: 0 20px;
}
.mobile-tab-menu li:last-child {
	border-right: 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;
	display: flex;
}
.offcanvas-navigation > ul > li > a {
	border-bottom: var(--border-light);
	padding: 12px 15px;
	display: flex;
}

/* 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;
}

/*-----------------------------
   LOGIN MODAL
------------------------------*/
.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 .btn-close {
	right: 5px;
	left: auto;
	position: absolute;
	top: 5px;
	color: var(--main);
}
.login-register-modal .btn-close:focus {
	outline: none;
}
.login-register-modal .btn-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 40px;
}
@media only screen and (max-width: 767px) {
	.modal-box-wrapper .content-modal-box {
		padding: 20px;
	}
}
@media only screen and (max-width: 500px) {
	.modal-box-wrapper .content-modal-box {
		padding: 20px 10px;
	}
}
.modal-box-wrapper .content-modal-box .checkbox-wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
@media only screen and (max-width: 470px) {
	.modal-box-wrapper .content-modal-box .checkbox-wrap{
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.modal-box-wrapper .content-modal-box .checkbox-wrap a{
		margin-top: 10px;
		display: block;
		width: 100%;
	}
}
.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);
}

.social-btn-block a{
	display: block;
	width: 100%;
	margin-bottom: 10px;
}
/*PAGES*/
.ad-block {
	padding: 20px 0;
	text-align: center;
}
.page-pagination {
	margin-top: 30px;
}
.page-pagination-numbers {
	display: flex;
	justify-content: center;
	gap: 10px;
}
.page-pagination-numbers li a {
	display: inline-flex;
	height: 40px;
	width: 40px;
	font-size: 1em;
	background: var(--primary);
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	color: var(--main);
	text-decoration: none;
	font-weight: 600;
}
.page-pagination-numbers li a.current,
.page-pagination-numbers li a:hover {
	background: var(--light);
}
.collection-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}
.collection-select select {
	height: 40px;
	/*border: 0;
	background: transparent;*/
	padding: 0 12px;
	border-radius: 5px;
	border: var(--border-light);
	-webkit-appearance: none;
	   -moz-appearance: none;
			appearance: none;
	font-size: 0.8em;
	background:  url("data:image/svg+xml;utf8,<svg viewBox='0 0 152 122' width='16' height='16' xmlns='http://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z' fill='currentColro'/></g></svg>") no-repeat;
	background-position: right 15px top 50%;
	cursor: pointer;
}
/*
.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;
	border: var(--border-light);
	margin-bottom: 20px!important;
}
.collection-item:hover {
	transform: translateY(5px)
}
.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.8em;
	/*min-height: 160px;*/
}
.collection-item-content li{
	margin: 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(--yellow);
	line-height: 1.1;
}
.collection-item-content li.title a{
	color: var(--yellow);
}
.collection-icon {
	top: auto;
	opacity: 1;
	bottom: -34px;
	margin: 0;
	position: absolute;
	right: 10px;
	transition: all 0.5s ease-in-out;
	z-index: 100;
}
.collection-icon li {
	margin-bottom: 5px;
}
.collection-icon li:not(.download-book) {
	opacity: 1;
	transition: all 0.4s ease 0s;
}
.collection-icon li.download-book a {
	color: var(--gray);
	background: var(--light);
}
.collection-icon li a {
	width: 50px;
	height: 50px;
	display:inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5em;
	border-radius: 100%;
	background: var(--light);
	color: var(--gray);
	/*box-shadow: var(--shadow-light);*/
}
.collection-icon li a:hover {
	color: var(--primary);
	background: var(--rose);
}
.collection-item:hover .collection-icon li:not(:last-child) {
	margin-bottom: 10px;
}
.collection-item:hover .collection-icon li:not(.download-book) {
	opacity: 1;
}

/*-----------------------------
BOOK 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);
}
.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;
	color: var(--yellow);
}
.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;
	color: var(--yellow);
}
/*.annotation-tags-list li.tags-title:after {*/
	/*content: ":";*/
/*}	*/
/*.annotation-tags-list li:not([class]):before {*/
	/*content: "#";*/
/*}*/

/*--------------*/

.section-space-ptb {
	padding: 60px 0;
}

/*-----------------------------
  - Error 404 Page Css
------------------------------*/
.error-404-page {
	padding-bottom: 30px;
}
.error-404-page h1 {
	font-size: 100px;
}
@media only screen and (max-width: 767px) {
	.error-404-page h1 {
		font-size: 50px;
	}
}
.error-404-page h2 {
	font-size: 32px;
}
/*-----------------------------
  FORM and BUTTON
------------------------------*/

.btn--red {
	background-color: var(--red);
	color: var(--primary);
}
.btn--red:hover {
	background-color: var(--yellow);
	color: var(--primary);
}

.btn--primary {
	background-color: var(--blue);
	color: var(--primary);
}
.btn--primary:hover {
	background-color: var(--yellow);
	color: var(--primary);
}
.btn--full {
	width: 100%;
	display: block;
}
.btn--small {
	padding: 8px 20px;
	font-size: 12px;
	border-color: transparent;
}
.btn--meddim {
	padding: 12px 25px;
	font-size: 13px;
	border-color: transparent;
}

/*---------------------------
    - My Account Page Css
----------------------------*/
.dashboard-upper-info [class*=col-]:not(:last-child) .d-single-info {
	border-right: 1px solid #ebebeb;
	padding: 30px 20px;
}
.dashboard-upper-info [class*=col-]:not(:last-child) .d-single-info p {
	margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.dashboard-upper-info [class*=col-]:not(:last-child) .d-single-info {
		border-right: medium none;
		padding: 0 0 20px;
	}
}
@media only screen and (max-width: 767px) {
	.dashboard-upper-info [class*=col-]:not(:last-child) .d-single-info {
		border-right: medium none;
		padding: 0 0 20px;
	}
}

.dashboard-upper-info {
	border-bottom: 1px solid #ebebeb;
	border-top: 1px solid #ebebeb;
	margin-bottom: 60px;
}
.dashboard-upper-info a.view-cart {
	background: #179957;
	color: #ffffff;
	font-size: 14px;
	padding: 5px 12px;
	text-transform: capitalize;
}
.dashboard-upper-info a.view-cart:hover {
	background: #000000;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.dashboard-upper-info {
		border-bottom: medium none;
		border-top: medium none;
	}
}
@media only screen and (max-width: 767px) {
	.dashboard-upper-info {
		border-bottom: medium none;
		border-top: medium none;
	}
}

.user-name span {
	color: #303030;
	font-size: 16px;
	font-weight: 600;
}

.dashboard-list li a {
	border-bottom: var(--border-light);
	color: var(--gray);
	display: block;
	font-size: 0.9em;
	padding: 12px 0;
	text-transform: capitalize;
}
.dashboard-list li a:hover, .dashboard-list li a.active {
	color: var(--blue);
}
.dashboard-list li:first-child {
	border-top: var(--border-light);
}
.dashboard-list li.active {
	color:  var(--blue);
}

.dashboard-content {
	border: var(--border-light);
	padding: 30px;
}
.dashboard-content h3 {
	border-bottom: var(--border-light);
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	margin-bottom: 25px;
	padding-bottom: 15px;
	text-transform: capitalize;
}
.dashboard-content .table thead {
	background: var(--bg-light);
	border-bottom: var(--border-light);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.dashboard-content .table td {
		min-width: 260px;
	}
}
@media only screen and (max-width: 767px) {
	.dashboard-content .table td {
		min-width: 260px;
	}
}
.dashboard-content .view {
	background: #179957;
	color: #ffffff;
	font-size: 14px;
	padding: 5px 12px;
	text-transform: capitalize;
}
.dashboard-content .view:hover {
	background: #000000;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.dashboard-content {
		margin-top: 80px;
	}
}
@media only screen and (max-width: 767px) {
	.dashboard-content {
		margin-top: 60px;
	}
}
.no-books {
	border-bottom: var(--border-light);
	border-right: var(--border-light);
}
.billing-address {
	margin-bottom: 10px;
}

.biller-name {
	margin-bottom: 0;
	margin-top: 10px;
}

.account-login-form .custom-checkbox {
	display: flex;
}
.account-login-form input[type=checkbox] {
	height: 20px;
	margin: 0 10px 0 0;
	position: relative;
	top: 3px;
	width: auto;
}
.account-login-form .example {
	margin-bottom: 15px;
}
.account-login-form .default-btn {
	margin-top: 15px;
	padding: 6px 28px;
}

.account-input-box label {
	display: block;
	font-size: 15px;
	margin-bottom: 3px;
}
.account-input-box input {
	width: 100%;
	margin-bottom: 12px;
	border: 1px solid #ddd;
	padding: 4px 10px;
	font-size: 15px;
}

.plantmore-product-add-cart .btn--small {
	min-width: 120px;
}

/* ADD BOOKS */
.book-info-list {
	display: flex;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
	border-radius: 0.25rem;
}
.book-info-list li {
	position: relative;
	display: block;
	padding: 0.5rem 1rem;
	color: var(--main);
	text-decoration: none;
	/*background-color: #fff;*/
	border: var(--border-light);
}
.book-info-list li:first-child {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}
.book-info-list li:last-child {
	border-bottom-right-radius: inherit;
	border-bottom-left-radius: inherit;
	border-top-width: 0;
}
.book-info-list li.disabled,
.book-info-list li:disabled {
	color: #6c757d;
	pointer-events: none;
	background-color: #fff;
}
.book-info-list li.active {
	z-index: 2;
	color: var(--main);
	background-color: var(--light);
	/*border-color: var(--gray);*/
	border: var(--border-light);
	padding: 15px;
}
.book-info-list li + .book-info-list li {
	border-top-width: 0;
}
.book-info-list li + .book-info-list li.active {
	margin-top: -1px;
	border-top-width: 1px;
}
.youbook-form > div {
	margin: 20px 0;
}
.youbook-form > div label {
	padding-top: calc(0.375rem + 1px);
	padding-bottom: calc(0.375rem + 1px);
	margin-bottom: 0;
	font-size: inherit;
	line-height: 1.5;
}
.user-info {
	display: flex;
	align-items: center;
	justify-content:flex-start;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.user-avatar {
	width: 60px;
	height: 60px;
	background: var(--primary);
	border-radius: 100%;
	border:var(--border-light);
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.user-avatar img{
	max-width: 60px;
	max-height: 60px;
}
@media (max-width: 575px) {
	.user-avatar {
		width: 40px;
		height: 40px;
	}
	.user-avatar img{
		max-width: 40px;
		max-height: 40px;
	}
	.my-account .login img {
		max-width: 32px;
		max-height: 32px;
	}
}

.dashboard-content h3 {
	margin: 0;
	border: none;
}
.dashboard-box {
	margin-bottom: 40px;
}
.dashboard-box .form-group {
	margin-top: 15px;
}
.dashboard-box .btn-submit{
	min-width: 250px;
}
.login-flex {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.login-flex div{
	margin-right: 30px;
}
.login-flex .btn-choose{
	min-width: 250px;
}
@media only screen and (max-width: 767px) {
	.login-flex {
		display: block;
	}
	.login-flex div{
		margin-right: 0;
		margin-bottom: 10px;
	}
	.login-flex .btn-upload,
	.login-flex .btn-choose,
	.dashboard-box .btn-submit{
		width: 100%;
	}
}

/*greylabel*/
.collection-menu {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap:10px;
}
.collection-menu-mobile {
	padding: 5px 15px;
}

.content-modal-box {
	border:var(--border-light);
}

/*masonry*/
:root {
	--ff-primary: basic-sans, sans-serif;
	--clr-primary: #ee6352;
	--clr-body: #333;
	--clr-bg: #ddd;
	--spacer: 1rem;
}
.grid {
	--gap: 1em;
	--columns: 4;
	max-width: /*60rem*/100%;
	margin: 0 auto;
	display: column;
	columns: var(--columns);
	gap: var(--gap);
}
@media only screen and (max-width: 991px) {
	.grid {
		--columns: 3;
	}
}
@media only screen and (max-width: 767px) {
	.grid {
		--columns: 2;
	}
}
@media only screen and (max-width: 575px) {
	.grid {
		--columns: 1;
	}
}

.grid > * {
	break-inside: avoid;
	margin-bottom: var(--gap);
}

@supports (grid-template-rows: masonry) {
	.grid {
		display: grid;
		grid-template-columns: repeat(var(--columns), 1fr);
		grid-template-rows: masonry;
		grid-auto-flow: dense;
		/* align-tracks: stretch; */
	}

	.grid > * {
		margin-bottom: 0em;
	}
}

.featured {
	grid-column: span 2;
}

/*paginator*/
.pagination .page-link{
    color: var(--main);
    background-color: var(--primary);
    border: var(--border-light);
}
.pagination .page-item.active  .page-link{
    background-color: var(--light);
    border: var(--border-light);
    box-shadow: none;
}
.pagination .page-item.disabled  .page-link{
    background-color: var(--light);
    border: var(--border-light);
}
.pagination .page-item .page-link {
    box-shadow: none;
}
