/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
/************************************/
/* RESET */
/************************************/

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, sub, sup, tt, var, 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: top;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

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

* {
  margin: 0;
  padding: 0;
	box-sizing: border-box;
}

img {
  width: 100%;
}

:focus {
	outline: none;
}

.clearFix {
	clear: both;
}

/************************************/
/* END RESET */
/************************************/

/* FONTS NÃO GOGGLE */
/* @font-face {
	font-family: 'myFont';
	src: url('myfont-webfont.eot?#iefix') format('embedded-opentype'),
	     url('myfont-webfont.ttf')  format('truetype');
} */

:root {
	--baseTextColor: #5b3c2c;
	--baseTitleColor: #7f3817;
	--baseLinkColor: #b73612;

	/* forms */
	--formBackgroundColor: #fff;
	--formBorder: 1px solid #ccc;
	--formCheckedColor: #b73612;
	--formDropDownOptionHoverBackgroundColor: #b73612;
	--formDropDownOptionHoverTextColor: #fff;

	font-family: 'Manuale', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--baseTextColor);
	background: #fff;
  -webkit-font-smoothing: antialiased;
}

section {
	width: 100%;
	padding: 6vh 0;
	position: relative;
}

.wrap {
  max-width: 1800px;
  position: relative;
  margin: auto;
	padding: 0 4vw;
}

.size56 { font-size: 56px; }
.size36 { font-size: 36px; }
.size24 { font-size: 24px; }
.size18 { font-size: 18px; }

@media (max-width:1200px) {

	.size56 { font-size: 48px; }
	.size36 { font-size: 30px; }
	.size24 { font-size: 22px; }
	.size18 { font-size: 18px; }

}

@media (max-width:767px) {

	.size56 { font-size: 36px; }
	.size36 { font-size: 24px; }
	.size24 { font-size: 20px; }
	.size18 { font-size: 17px; }

}

a {
  color: var(--baseLinkColor);
	text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/************************************/
/* GRAPHIC ELEMENTS */
/************************************/

#preloader {
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	left: 50%;
	top: 50vh;
	position: fixed;
	display: none;
	padding: 20px;
	background-color: rgba(255,255,255,.8);
	border-radius: 50%;
	width: 150px;
}

/* CALL TO ACTION */

.cta {
	background: #b73612;
	color: #fff;
	display: inline-block;
	padding: 7px 10px;
	border-radius: 3px;
	cursor: pointer;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	border: 1px solid #b73612;
	font-family: 'Manuale', serif;
}

.ctaLight {
	background: #fbf5f3;
	color: #b73612;
}

.ctaWhite {
	border: 1px solid #fff;
	background: #fff;
	color: #ccafa2;
}

.cta:hover {
	background: #333;
	color: #fff;
	border: 1px solid #333;
	text-decoration: none;
}

.ctaInput {
	border: none;
	background: none;
	font-size: 16px;
	padding: 10px;
	position: absolute;
	top: 20px;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color: var(--baseLinkColor);
	cursor: pointer;
}

.ctaInput:hover {
	color: #333;
}

.ctaPriceLeft {
	border-radius: 0;
}

.ctaPriceRight {
	background: #fff;
	color: #333;
	display: inline-block;
	padding: 7px 5px;
	border: 1px solid #b73612;
	border-left: none;
}

/* TRANSITION STYLE */

.transition {
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

/* FORMS */

/* input */

.formStyle {
	position: relative;
	display: inline-block;
}

.formStyle .fsInput {
	background: var(--formBackgroundColor);
	border: var(--formBorder);
	color: var(--baseTextColor);
	padding: 5px;
	width: 100%;
	margin-bottom: 10px;
	min-height: 40px;
	font-size: 15px;
	font-family: 'Manuale', serif;
	border-radius: 3px;
}

/* dropdown */

.formStyle .fsDropDown {
	position: relative;
	width: 100%;
	margin-bottom: 10px;
	min-height: 40px;
	cursor: pointer;
}

.formStyle .fsDropDown::after {
	color: var(--baseTextColor);
	content: '\e813';
  font-family: 'icomoon';
  speak: none;
	position: absolute;
	top: 50%;
	right: 10px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.formStyle .fsDropHover::after {
	transform: rotate(180deg);
	top: calc(50% - 8px);
}

.formStyle .fsDropDown li {
	position: relative;
}

.formStyle .fsDropDown .fsSelected {
	background: var(--formBackgroundColor);
	color: var(--baseTextColor);
	border: var(--formBorder);
	width: 100%;
	display: block;
	padding: 7px 30px 7px 5px;
	text-align: left;
	border-radius: 3px;
}

.formStyle .fsDropDown .fsOptions {
	background: var(--formBackgroundColor);
	position: absolute;
	box-shadow: 0 0 2px rgba(0,0,0,.2);
	min-width: 100%;
	display: none;
	z-index: 1;
	white-space: nowrap;
}

.formStyle .fsDropDown .fsOptions > li {
	border-bottom: var(--formBorder);
	position: relative;
	padding: 5px;
	text-align: left;
	cursor: pointer;
}

.formStyle .fsDropDown .fsOptions > li:hover {
	color: var(--formDropDownOptionHoverTextColor);
	background: var(--formDropDownOptionHoverBackgroundColor);
}

/* checkbox */

.formStyle .fsCheckbox {
	background: var(--formBackgroundColor);
	border: var(--formBorder);
	width: 30px;
	height: 30px;
	padding: 8px;
	margin: 5px 0 15px 0;
	display: inline-block;
	cursor: pointer;
	position: relative;
	vertical-align: middle;
	border-radius: 3px;
}

.formStyle .fsCheckbox.fsChecked {
	background: #f1f1f1;
}

.formStyle .fsCheckbox.fsChecked::after {
	background: var(--formCheckedColor);
	content: "";
	width: 12px;
	height: 12px;
	border-radius: 1px;
	display: block;
}

/* radiobutton */

.formStyle .fsRadio {
	background: var(--formBackgroundColor);
	border: var(--formBorder);
	width: 30px;
	height: 30px;
	padding: 8px;
	margin: 5px 0 15px 0;
	display: inline-block;
	cursor: pointer;
	position: relative;
	border-radius: 50%;
	vertical-align: middle;
}

.formStyle .fsRadio.fsChecked {
	background: #f1f1f1;
}

.formStyle .fsRadio.fsChecked::after {
	background: var(--formCheckedColor);
	content: "";
	width: 12px;
	height: 12px;
	border-radius: 50%;
	display: block;
}

/* input file */
.formStyle .fsFile {
	position: relative;
	margin-bottom: 10px;
	border-radius: 3px;
}

.formStyle .fsFile input[type="file"]{
	display: none;
}

.formStyle .fsFile .fsFileLabel{
  cursor: pointer;
	display: inline-block;
}

.formStyle .fsFile .fsFileText{
  display: inline-block;
	padding: 5px;
}

/* text area (fsInput class) */
.formStyle textarea {
	font-family: 'Manuale', serif;
	border-radius: 3px;
}

/* form error */

.formStyle .fsError {
	border: 1px solid #ff0000;
	box-shadow: 0 0 2px #ff0000;
}

/* double column <li> */
.formStyle .col2 > li {
	width: 50%;
	display: inline-block;
	padding: 0 5px 0 0;
}

.formStyle .col2 > li:last-child {
	padding: 0 0 0 5px;
}

/* triple column <ul> 30-20-50 */
.formStyle .col3 > li {
	width: 23%;
	display: inline-block;
	padding: 0 5px;
}

.formStyle .col3 > li:first-child {
	width: 27%;
	padding: 0 5px 0 0;
}

.formStyle .col3 > li:last-child {
	width: 50%;
	padding: 0 0 0 5px;
}

/* END FORMS */

/* highlight book */

.highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 7px 10px;
  background: #4466c6;
  text-transform: uppercase;
  color: #fff;
	box-shadow: 0 0 3px rgba(0,0,0,.3);
}

/* end highlight book */

/* slickNavUl */

.slickNavUl .slickNavLi {
	display: inline-block;
	width: 50%;
	padding: 0 0 0 10px;
}

.slickNavUl .slickNavLi:first-child {
	padding: 0 10px 0 0;
	text-align: right;
}

.icon {
	padding: 10px;
	margin: 0;
	cursor: pointer;
	border-radius: 3px;
}

/* disclaimer forms */

.formStyle .formDisclaimerDiv {
  padding: 10px 0;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
	margin: 0 0 10px 0;
}

.formStyle .formDisclaimerUl {
  padding: 0 0 5px 0;
}

.formStyle .formDisclaimerLi {
  width: 40px;
  vertical-align: top;
  display: inline-block;
}

.formStyle .formDisclaimerLi:last-child {
  width: calc(100% - 40px);
}

/* section titles */

.sectionTitle {
	padding: 0 15px 10px 15px;
	text-align: center;
	font-weight: 700;
	color: #7f3817;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
	position: relative;
	background: #fff;
}

.sectionSubTitle {
	padding: 0 0 10px 0;
	text-align: center;
	color: #9d8a80;
}

/* end section titles */

/* books */

.bookContainer {
	display: block;
}

.bookContainer:hover {
	text-decoration: none;
}

.bookContainer .bookImg {
	width: 80%;
	height: 12vw;
	max-height: 280px;
	background-position: left bottom;
  background-size: contain;
  background-repeat: no-repeat;
	position: relative;
}

.bookContainer .bookInfo {
	padding: 10px 0 0 0;
	position: relative;
}

.bookContainer .bookExtras {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 125%;
}

.bookContainer .highlight {
	position: relative;
	display: inline-block;
	vertical-align: bottom;
}

.bookContainer .bookType {
	display: inline-block;
	vertical-align: bottom;
	background: #fff;
}

.bookContainer .bookType .iconType {
	padding: 5px;
}

.bookContainer .bookTitle {
	color: #5b3c2c;
	font-weight: 700;
	padding: 5px 0;
	line-height: 110%;
}
.bookContainer .bookAuthor {
	color: #5b3c2c;
	max-height: 75px;
	overflow: hidden;
	line-height: 115%;
	margin-bottom: 6px;
	font-size:14px;
}
.bookContainer .bookSummary {
	color: #9d8a80;
	max-height: 75px;
	overflow: hidden;
	line-height: 115%;
}

@media (max-width:1500px) {
  .bookContainer .bookImg {
    height: 23vw;
  }
}

@media (max-width:1000px) {
  .bookContainer .bookImg {
    height: 30vw;
  }
}

@media (max-width:767px) {
  .bookContainer .bookImg {
    height: 45vw;
  }

	.bookContainer .bookSummary {
		font-size: 13px;
		line-height: 120%;
	}
}

/* end books */

/************************************/
/* END GRAPHIC ELEMENTS */
/************************************/

/************************************/
/* HEADER */
/************************************/

#header {
	background: #fff;
}

#header .topHeadUl {
	padding: 10px 0;
}

#header .topHeadLi {
	display: inline-block;
	width: 160px;
	vertical-align: middle;
}

#header .topHeadLi:last-child {
	width: calc(100% - 160px);
	text-align: right;
}

#header .icon {
	padding: 11px;
}

#header .formTopHead {
	max-width: 300px;
}

#header .topHeadLi .fsInput {
	margin: 0;
	padding: 5px 40px 5px 5px;
}

#header .topHeadLi .ctaLight {
	margin: 0 5px;
}

#header .topHeadLi .login::before {
	content: "\e903";
	font-family: "icomoon";
	margin: 0 5px 0 0;
}

#header .cart {
	padding: 5px;
	display: inline-block;
	font-size: 30px;
	position: relative;
	color: var(--baseTitleColor);
}

#header .cart:hover {
	text-decoration: none;
	color: #333;
}

#header .cartNumber {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	font-size: 13px;
	width: 20px;
	height: 20px;
	background: var(--baseLinkColor);
	text-align: center;
	line-height: 18px;
	border-radius: 50%;
}

#header .mobileSearchLink, #header .mobileLogin, #header .close {
	display: none;
}

#header .bottomHead {
	border-top: 1px solid #f1d7d0;
	border-bottom: 1px solid #f1d7d0;
	background: #fbf5f3;
}

#header .logoLink {
	display: inline-block;
}

#header .logo {
	width: auto;
	vertical-align: middle;
	display: inline-block;
	margin: 5px 0;
}

#header.mobile .logo {
	width: 60vw;
	max-width: 339px;
}

#header .mainNav {
	position: absolute;
	right: 4vw;
	top: 0;
	height: 100%;
	z-index: 20;
}

#header .mainNavDiv {
	display: inline-block;
}

#header.mobile .mainNavDiv {
	position: absolute;
	top: 70px;
	right: 0;
	display: none;
	background: #fff;
	box-shadow: 0 0 3px rgba(0,0,0,.2);
	padding: 10px;
}

#header .leftNavUl {
	display: inline-block;
}

#header.mobile .leftNavUl {
	display: block;
	min-width: 280px;
}

#header .mainNavLi {
	position: relative;
}

#header .leftNavUl .mainNavLi {
	display: inline-block;
}

#header.mobile .leftNavUl .mainNavLi {
	display: block;
}

#header .rightNavUl {
	position: absolute;
	display: none;
	right: 0;
	min-width: 280px;
	background: #fff;
	box-shadow: 0 0 3px rgba(0,0,0,.2);
	padding: 10px;
}

#header.mobile .rightNavUl {
	position: relative;
	display: block;
	background: none;
	box-shadow: none;
	padding: 0;
}

#header .burger {
	width: 40px;
	height: 40px;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	margin: 0 0 0 40px;
	cursor: pointer;
	border-radius: 3px;
}

#header .burger:hover {
	background: #f1d7d0;
}

#header .burger li {
	position: absolute;
	width: 30px;
	height: 1px;
	left: 5px;
	top: 20px;
	background: var(--baseLinkColor);
}

#header .burger li:first-child {
	top: 10px;
}

#header .burger li:last-child {
	top: 30px;
}

#header .burger.status li:first-child {
	left: 20px;
	opacity: 0;
}

#header .burger.status li:last-child {
	left: -20px;
	opacity: 0;
}

#header .burger.status li:nth-child(2) {
	transform: rotate(45deg);
}

#header .burger.status li:nth-child(3) {
	transform: rotate(-45deg);
}

#header .mainLink {
	padding: 6px 0;
	display: block;
	text-align: center;
	border-bottom: 1px solid #e9c2b7;
	cursor: pointer;
}

#header .mainNavLi:last-child .mainLink {
	border-bottom: none;
}

#header .leftNavUl .mainLink {
	padding: 37px 20px;
	height: 100%;
	text-transform: uppercase;
	border-bottom: none;
}

#header.mobile .leftNavUl .mainLink {
	padding: 6px 0;
	height: auto;
	border-bottom: 1px solid #e9c2b7;
	background: #f1d7d0;
}

#header .mainLink:hover {
	background: var(--baseLinkColor);
	color: #fff;
	text-decoration: none;
}

#header.mobile .leftNavUl .mainLink:hover {
	background: var(--baseLinkColor);
}

#header .mainLink.active {
	background: var(--baseLinkColor);
	color: #fff;
}

#header.mobile .leftNavUl .mainLink.active {
	background: var(--baseLinkColor);
}

#header .subLinksUl {
	position: absolute;
	background: #fff;
	padding: 10px;
	box-shadow: 0 0 3px rgba(0,0,0,.2);
	right: 0;
	display: none;
	min-width: 250px;
}

#header.mobile .subLinksUl  {
	position: relative;
	padding: 0;
	box-shadow: none;
}

#header .subLinksLi {
	position: relative;
	border-bottom: 1px solid #e2afa0;
}

#header .subLinksLi:last-child {
	border-bottom: none;
}

#header .subLink {
	white-space: nowrap;
	display: block;
	text-align: center;
	padding: 5px 20px;
	background: #fbf5f3;
}

#header.mobile .subLink {
	white-space: normal;
}

#header .subLink:hover {
	text-decoration: none;
	background: var(--baseLinkColor);
	color: #fff;
}

#header .mainNav .icon {
	position: absolute;
	right: 0;
	padding: 10px;
	top: 0;
	color: #fff;
	display: none;
	background: var(--baseLinkColor);
	cursor: pointer;
}

#header.mobile .mainNav .icon {
	display: inline-block;
}

#header .rightNavUl .subLinksUl {
	display: none;
	position: relative;
	box-shadow: none;
	padding: 0;
}

@media (max-width: 767px) {

	#header .topHeadUl {
		padding: 5px 0;
	}

	#header .formTopHead, #header .login {
		display: none;
	}

	#header .mobileSearchLink {
		display: inline-block;
	}

	#header .mobileLogin {
		display: inline-block;
		margin: 0 5px;
	}

	#header .formTopHead {
		position: absolute;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background: rgba(255,255,255,.95);
		max-width: none;
		z-index: 50;
		padding: 4vw;
	}

	#header .formPosition {
		position: relative;
		top: 40%;
	}

	#header .close {
		display: inline-block;
		position: absolute;
		top: 20px;
		right: 20px;
		padding: 20px;
		font-size: 30px;
		color: var(--baseLinkColor);
		cursor: pointer;
	}

	#header .close:hover {
		color: #333;
	}
}

/************************************/
/* END HEADER */
/************************************/

/************************************/
/* FOOTER */
/************************************/

#footer {
	border-top: 1px solid #5b3c2c;
	padding: 0 0 5vh 0;
}

#footer .newsletterText {
	padding: 20px 0 10px 0;
}

#footer .formStyle {
	display: block;
	max-width: 350px;
}

#footer .fsInput {
	margin: auto;
}

#footer .footerLi {
	display: inline-block;
	width: 50%;
	vertical-align: middle;
}

#footer .footerLi:last-child {
	text-align: right;
}

#footer .footerImg {
	width: auto;
	margin: 0 0 0 10px;
}

#footer .disclaimer {
	padding: 20px 0;
}

#footer .litigio {
	text-align: center;
	font-size: 12px;
}

@media (max-width: 767px) {
	#footer .footerLi {
		width: 100%;
		padding: 0 0 10px 0;
	}

	#footer .formStyle {
		max-width: 100%;
	}

	#footer .footerLi:last-child {
		text-align: center;
	}
}

/************************************/
/* END FOOTER */
/************************************/
