/* Color Legend */
/* #e2e2e2; --- Light Grey */
/* #f2f2f2; --- Lighter Grey */
/* #ffffff; --- White */
/* #000000; --- Black */
/* #1d1d1d; --- Darkest Charcoal */
/* #232324; --- Darker Charcoal */
/* #2B2C2F; --- Charcoal */
/* #34373C; --- Slate Blue */
/* #3b3c42; --- Lighter Slate Blue */
/* #C2AB72; --- Gold */
/* #cdc092; --- Cream */
/* #f7eed0; --- Lighter Cream */
/* rgba(0, 0, 0, 0); --- Transparent RGBA */

body {
	color: #ffffff;
	margin: 0;
	padding: 0;
	background-color: #2B2C2F;
	font-family: "Cardo";
	transition: all linear 300ms;
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
	background-image: url("../images/home/escera.jpg");
    background-size: cover;
	background-position: center top;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
	padding: 0;
	margin: 0;
	transition: all linear 200ms;
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
	font-weight: normal;
}

h1 {font-size: 38px;}
h2 {font-size: 32px;}
h3 {font-size: 29px;}
h4 {font-size: 26px;}
h5 {font-size: 24px;}
h6 {font-size: 20px;}

p {
	padding: 0;
	margin: 0;
	transition: all linear 200ms;
	font-size: 18px;
	line-height: 1.15;
}

a {
	text-decoration: none;
	color: #C2AB72;
	margin: 0;
	padding: 0;
	display: block;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
	font-size: 19px;
	font-family: "Cardo";
}

a:hover {
	color: #f7eed0;
}

button {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

ul {
	margin: 0;
	padding: 0;
	display: flex;
	transition: all linear 500ms;
}

ul li {
	list-style-type: none;
	font-size: 18px;
	font-family: "Cabin";
}

.divider {
	margin: 0 auto;
	margin-top: 60px;
	margin-bottom: 60px;
	text-align: center;
	display: block;
	height: 1px;
	width: 100px;
	color: #2B2C2f;
	border-bottom: solid 1px #2B2C2f;
}

.gold_divider {
	margin: 0 auto;
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: center;
	display: block;
	height: 1px;
	width: 80px;
	color: #C2AB72;
	border-bottom: solid 1px #C2AB72;
}

.white_divider {
	margin: 0 auto;
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: center;
	display: block;
	height: 1px;
	width: 80px;
	color: #FFFFFF;
	border-bottom: solid 1px #FFFFFF;
}

.books_divider {
	margin: 0 auto;
	margin-bottom: 30px;
	text-align: center;
	display: block;
	height: 1px;
	width: 80px;
	color: #FFFFFF;
	border-bottom: solid 1px #FFFFFF;
}

.summary_divider {
	margin: 0 auto;
	margin-top: 24px;
	margin-bottom: 24px;
	text-align: center;
	display: block;
	height: 2px;
	width: 40px;
	color: rgba(0, 0, 0, 0);
	border-bottom: solid 2px rgba(0, 0, 0, 0);
}

.bold {
	font-weight: bold;
}

.italic {
	font-style: italic;
}

.underline {
	text-decoration: underline;
}

.visibilityOn {
	opacity: 1 !important;
	visibility: visible !important;
}

.visibilityOff {
	opacity: 0 !important;
	visibility: hidden !important;
}

.wd_visibilityOff {
	opacity: 0 !important;
	visibility: hidden !important;
	transition: visibility 400ms ease-in, opacity 400ms ease-in !important;
	display: none !important;
}

.noselect {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}


/* *********************** */
/* ******* Header ******* */
/* ********************** */

#header {
    background-color: #2B2C2F;
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    z-index: 40;
	display: flex;
	align-items: center;
	transition: all linear 300ms;
	box-sizing: border-box;
	border-bottom: 2px solid #C2AB72;
}

#header a {
	font-size: 23px;
}

.leftAlign {
	text-align: left;
	flex: 0;
	padding-right: 70px;
	display: flex;
	margin-left: 5vw;
}

.leftAlign a {
	display: flex;
	align-items: center;
}

.centerAlign {
	text-align: center;
}

.rightAlign {
	text-align: right;
	flex: 1;
}

#main_logo {
	height: 60px;
	transition: all ease-out 400ms;
	position: relative;
	z-index: 14;
	cursor: pointer;
}

#nav {
	margin: 0 auto;
	text-align: center;
	opacity: 1;
	visibility: visible;
	color: #C2AB72;
}

#nav a {
	padding-left: 20px;
	padding-right: 20px;
	line-height: 70px;
}

.active {
	color: #f7eed0 !important;
}

#mobileNav {
	margin: 0 auto;
	text-align: center;
	position: fixed;
	top: 56px;
	height: 100vh;
	width: 50%;
	display: block;
	background-color: #2B2C2F;
	box-sizing: border-box;
	transition: all linear 100ms;
	display: none;
	border-left: 2px solid #C2AB72;
}

#mobileNav ul {
	display: block;
}

#mobileNav a {
	padding-left: 14px;
	padding-right: 14px;
	line-height: 60px;
	font-size: 25px;
}

#overlay {
	transition: all linear 200ms;
}

.mobileOn {
	opacity: 1 !important;
	visibility: visible !important;
	right: 0 !important;
}

.mobileOff {
	opacity: 0 !important;
	visibility: hidden !important;
	right: calc(-1 * 50vw) !important;
}


/* ******************** */
/* ******* Home ******* */
/* ******************** */

.section_clear {
	background-color: rgba(0, 0, 0, 0);
	height: auto;
	width: 100%;
	transition: all linear 400ms;
	position: relative;
	padding: 20px;
	box-sizing: border-box;
}

.section_dark {
	display: block;
	position: relative;
	padding: 20px;
	color: #ffffff;
	background-color: #34373C;
	transition: all linear 500ms;
}

.section_dark h1 {
	background-image: linear-gradient(#ffffff, #ffffff);
	background-size: 25% 1px;
	background-position: bottom center;
	background-repeat: no-repeat;
	margin-top: 20px;
	color: #ffffff;
	padding-bottom: 40px;
}

.section_light {
	display: block;
	position: relative;
	padding: 20px;
	color: #2B2C2F;
	background-color: #e2e2e2;
	transition: all linear 500ms;
}

.section_light h1 {
	background-image: linear-gradient(#2B2C2F, #2B2C2F);
	background-size: 25% 1px;
	background-position: bottom center;
	background-repeat: no-repeat;
	margin-top: 20px;
	color: #2B2C2F;
	padding-bottom: 40px;
}

.section_first {
	margin-top: 70px;
}

.center_section {
	margin: 0 auto;
	text-align: center;
}

.ff_container {
	display: block;
	text-align: center;
	margin: 0 auto;
	position: relative;
}

.ff_banner {
	display: block;
	color: #2B2C2F;
	margin: 0 auto;
	position: relative;
	box-sizing: border-box;
	transition: all linear 200ms;
	border-radius: 2px;
	line-height: 0;
	margin-top: 70px;
}

.ff_banner img {
	width: 100%;
	max-width: 1140px;
	box-sizing: border-box;
	border: 4px solid #2B2C2F;
	border-bottom: 2px solid #2B2C2F;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	border-bottom-left-radius: initial;
	border-bottom-right-radius: initial;
}

.foate_summary {
	text-align: left;
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	transition: all linear 200ms;
	background-color: rgba(0, 0, 0, 0.2);
	padding: 20px;
	box-sizing: border-box;
	border: 4px solid #2B2C2F;
	border-top: 2px solid #2B2C2F;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
}

.foate_summary p {
	line-height: 1.3;
	font-family: "Cabin";
}

.reviews_parent {
	width: 944px;
	margin: 0 auto;
	display: block;
	position: relative;
}

.reviews_container {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 40px;
	margin-bottom: 10px;
}

.review {
	padding: 26px;
	width: 400px;
	height: 400px;
	box-sizing: border-box;
	margin: 4px;
	text-align: left;
	display: grid;
	flex-direction: column;
	background-color: #3b3c42;
	border-radius: 2px;
}

.review p {
	line-height: 1.3;
	font-family: "Cabin";
}

.review_book {
	margin-top: 36px;
	text-align: center;
	align-self: flex-end;
}

.stars {
	color: #C2AB72;
	margin-bottom: 26px;
	text-align: center;
}

.narwin_icon {
	position: relative;
	margin: 0 auto;
	display: block;
	max-width: 260px;
}

/* ********************* */
/* ******* Forms ******* */
/* ********************* */

#newsletter {
	scroll-margin-top: 70px;
}

.form_container {
	width: 700px;
	display: block;
	color: #2B2C2F;
	margin: 0 auto;
    position: relative;
	box-sizing: border-box;
	background-color: #fff;
	transition: all linear 500ms;
	padding: 40px;
	margin-top: 40px;
	border-radius: 2px;
	border: 2px solid #C2AB72;
}

.form_container p {
	font-family: "Cabin";
	font-size: 19px;
	font-weight: bold;
	line-height: 1.3;
	padding-bottom: 40px;
	text-align: center;
}

.form_container label {
	font-family: "Cabin";
	font-size: 19px;
	font-weight: bold;
	position: relative;
}

input[type=text], input[type=email], input[type=password] {
	position: relative;
	width: 100%;
	height: 50px;
	display: block;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
	font-size: 17px;
	font-weight: bold;
	margin: 0;
	margin-bottom: 0;
	padding: 2px 10px;
	color: #2B2C2F;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

input[type=text]:focus, input[type=email]:focus, input[type=password]:focus {
	outline: none !important;
	border: 1px solid #34373C;
}

input[type=submit] {
	position: relative;
	display: block;
	background-color: #e2e2e2;
	color: #2B2C2F;
	height: 54px;
	width: 100%;
	border: none;
	cursor: pointer;
	font-size: 20px;
	font-weight: bold;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
	outline: none !important;
	border-radius: 2px;
	box-sizing: border-box;
	border: 2px solid #C2AB72;
	transition: all linear 200ms;
}

#submit_container {
	position: relative;
	display: block;
	height: 54px;
	width: 100%;
	border-radius: 2px;
}

input[type=submit]:focus {
	outline: none !important;
}

input[type=submit]:hover {
	background-color: #f2f2f2;
	transition: all linear 200ms;
}

.loading {
	position: absolute;
	margin: auto;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	border: 3px solid #C2AB72;
	border-radius: 50%;
	border-top: 3px solid #34373C;
	width: 20px;
	height: 20px;
	animation: spinner 1.75s linear infinite;
	text-align: center;
	display: none;
}

@keyframes spinner {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

#first_name_container {
	display: flex;
	align-items: center;
}

#first_name_container label {
	flex: 1;
}

#first_name_container input {
	flex: 3;
}

#email_container {
	display: flex;
	align-items: center;
}

#email_container label {
	flex: 1;
}

#email_container input {
	flex: 3;
}

#subject_container {
	display: flex;
	align-items: center;
}

#subject_container label {
	flex: 1;
}

#subject_container input {
	flex: 3;
}

#message_container {
	display: flex;
	align-items: center;
}

#message_container label {
	flex: 1;
	align-self: flex-start;
	margin-top: 22px;
}

#message_container textarea {
	flex: 3;
}

textarea {
	width: 100%;
	height: 300px;
	display: block;
	border: 1px solid #ccc;
	border-radius: 2px;
	font-weight: bold;
	font-size: 17px;
	margin: 8px 0;
	margin-bottom: 0;
	padding: 14px 10px;
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
	color: #2B2C2F;
	resize: none;
}

textarea:focus {
	outline: none !important;
	border: 1px solid #34373C;
}

.invalid {
	border-color: #d9534f !important;
	border-bottom-right-radius: 0 !important;
}

#statusBar_container {
	display: block;
	height: 40px;
	background-color: #ffffff;
	position: relative;
	width: 100%;
	border-radius: 2px;
	text-align: center;
	transition: all linear 100ms;
	margin-top: 8px;
	margin-bottom: 8px;
	font-weight: bold;
	box-sizing: border-box;
	border: 2px solid rgba(0, 0, 0, 0);
	overflow: hidden;
}

.statusBar {
	position: absolute;
	display: flex;
	color: #ffffff;
	box-sizing: border-box;
	border: 2px solid rgba(0, 0, 0, 0);
	transition: all linear 100ms;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
}

#statusBar_validation {
	background-color: #d9534f !important;
}

#statusBar_error {
	background-color: #d9534f !important;
}

#statusBar_success {
	background-color: #5cb85c !important;
}

.errorDiv {
	height: 20px;
	display: block;
	position: relative;
	text-align: right;
}

.errorMessage {
	color: #ffffff;
	display: inline-block;
	line-height: 20px;
	font-size: 14px;
	background-color: #d9534f;
	padding-left: 8px;
	padding-right: 8px;
}


/* *********************** */
/* ******* Footer ******* */
/* ********************** */

footer {
	background-color: #2B2C2F;
    height: 400px;
    position: relative;
	display: flex;
	transition: all linear 300ms;
}

footer ul {
	margin: 0;
	padding: 0;
	display: block;
	transition: all linear 300ms;
}

#footerNav {
	margin-left: 5.3vw;
	align-items: center;
	display: flex;
	flex: 1;
	justify-content: flex-start;
}

#footerNav a {
	line-height: 40px;
	font-size: 24px;
}

.footerActive {
	color: #f7eed0 !important;
}

.socialMedia {
	position: relative;
	margin: 0 auto;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
}

.instagramLogo {
	background: url("../images/sm_instagram.png") no-repeat;
	margin-left: 8px;
	margin-right: 8px;
}

.facebookLogo {
	background: url("../images/sm_facebook.png") no-repeat;
	margin-right: 4px;
}

.threadsLogo {
	background: url("../images/sm_threads.png") no-repeat;
	margin-left: 4px;
}

.blueskyLogo {
	background: url("../images/sm_bluesky.png") no-repeat;
	margin-left: 8px;
	margin-right: 8px;
}

.smLogo {
	height: 40px;
	width: 40px;
	cursor: pointer;
	border-radius: 2px;
	background-position: 0 0;
	background-size: 40px;
}

.smLogo:hover {
	background-position: 0 -40px;
}

#copyright {
	margin-right: 5.3vw;
	color: #C2AB72;
	align-items: flex-end;
	display: flex;
	flex: 1;
	justify-content: flex-end;
	line-height: 40px;
	padding-bottom: 60px;
}

/* ************************** */
/* ******* Books Page ******* */
/* ************************** */

#booksHeader {
	text-align: center;
	max-width: 800px;
	display: block;
	margin: 0 auto;
	margin-top: 40px;
}

.volumeTitle {
	margin-top: 40px;
}

#bookCover_container {
	width: 1120px;
	margin: 0 auto;
	text-align: center;
}

.books_flex {
	display: flex;
	width: 1120px;
	background-color: #2B2C2F;
	margin-top: 40px;
	margin-bottom: 20px;
	border-radius: 2px;
	box-sizing: border-box;
}

#bookCover {
	margin: 0 auto;
	position: relative;
	background-color: #2B2C2F;
	transition: all linear 100ms;
	padding: 4px;
	border-radius: 2px;
	box-sizing: border-box;
}

#bookCover div {
	position: relative;
	display: block;
	width: 360px;
	background-color: #2B2C2F;
}

#bookCover > div:first-of-type {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
}

#bookCover > div:last-of-type {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
}

.books_btn_container {
	box-sizing: border-box;
	margin: 0 auto !important;
	padding: 0 !important;
}

.books_po_btn {
	margin-top: 4px;
	width: 100%;
	max-width: 360px;
	font-size: 18px;
	cursor: pointer;
	border-radius: 2px;
	border: none;
	outline: none;
	box-sizing: border-box;
	color: #e2e2e2;
	background-color: #232324;
	padding: 6px;
	transition: all linear 120ms;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.books_blurb {
	text-align: left;
	align-items: center;
	justify-content: center;
	display: flex;
}

.books_blurb_wrapper {
	padding: 20px;
}

.books_blurb_wrapper p {
	line-height: 1.3;
	font-family: "Cabin";
}

.blurb {
	display: block;
	margin: 0 auto;
    position: relative;
	box-sizing: border-box;
	transition: all linear 300ms;
}

.blurb div {
	padding-bottom: 20px;
}

.blurb div:last-of-type {
	padding-bottom: 0;
}

#bookCover div img {
	display: block;
	width: 100%;
	position: relative;
}

.books_grid_container {
	text-align: center;
	position: relative;
}

.books_grid_container_2 {
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	transition: all linear 600ms;
}

.books_parent {
	display: block;
	position: relative;
	width: 1120px;
	margin: 0 auto;
	height: 680px;
}

.books_grid {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 1120px;
	margin-top: 20px;
	position: relative;
}

.books {
	position: relative;
	padding: 4px;
	max-width: 360px;
	box-sizing: border-box;
	text-align: left;
	display: grid;
	flex-direction: column;
	border-radius: 2px;
	line-height: 0;
	overflow: hidden;
	width: 100%;
	margin: 4px;
	height: fit-content;
	transition: all linear 200ms;
}

.books a {
	transition: all ease 10ms;
	border-radius: 2px;
}

.books img {
	position: relative;
	width: auto;
	max-width: 360px;
	border-radius: 2px 2px 0 0;
	box-sizing: border-box;
	display: block;
	padding: 4px;
	margin: 0 auto;
	padding-top: 14px;
	transition: all ease 300ms;
}

.tropes {
	position: absolute !important;
	top: 0;
	left: 0;
	transform: scale(0.3);
	visibility: hidden;
	opacity: 0;
}

.blurb_header {
	margin-bottom: 20px;
}

.blurb_header h4 {
	margin-bottom: 6px !important;
}

.foate_color {color: #bd3434;}
.woams_color {color: #528cc8;}
.wotrs_color {color: #cfbd78;}

.not_available {
	color: #999;
	cursor: default;
}

.support_me a {
	display: inline;
}

#character_container {
	display: flex;
	margin: 0 auto;
	width: 860px;
	height: 640px;
	margin-top: 40px;
	box-sizing: border-box;
	border-radius: 2px;
	background-color: #cdc092;
	padding: 2px;
}

#crop_container {
	display: flex;
	box-sizing: border-box;
	border-radius: 2px;
}

.crops {
	height: auto;
	width: 100px;
	display: block;
	background-color: #2B2C2F;
	margin-right: 2px;
	position: relative;
	border-radius: 2px;
	cursor: pointer;
	box-sizing: border-box;
	overflow: hidden;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

.characterImage_crop {
	width: 100%;
	height: auto;
	display: block;
	transition: all ease 150ms;
	opacity: 0.3;
}

.characterImage_crop:hover {
	transform: scale(1.20);
	transition: all ease 150ms;
	opacity: 1;
}

.activeCrop {
	transform: scale(1.20);
	opacity: 1;
}

#character_profiles {
	display: block;
	width: auto;
	height: calc(100% - 242px);
	background-color: #ffffff;
	margin-top: 2px;
	margin-right: 2px;
	position: relative;
	border-radius: 2px;
	box-sizing: border-box;
	color: #2B2C2F;
}

#character_profiles h5 {
	margin: 0 auto;
	text-decoration: none;
	padding: 30px 20px;
	text-align: center;
}

#character_profiles p {
	font-size: 18px;
	font-family: "Cabin";
	line-height: 1.3;
	padding-left: 20px;
	padding-right: 20px;
}

.profiles {
	position: absolute;
	top: 0;
	left: 0;
	transition: all ease 1000ms;
}

#character_full {
	display: block;
	width: 100%;
	position: relative;
	border-radius: 2px;
	background-color: #2B2C2F;
	box-sizing: border-box;
	overflow: hidden;
}

.characterImage_full {
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	transition: all ease 1000ms;
}

.mobile_container {
	display: none;
	text-align: center;
	color: #2B2C2F;
	background-color: #f2f2f2;
	padding: 4px;
	padding-bottom: 0;
	border-radius: 2px;
	margin: 0 auto;
	margin-top: 40px;
	border: 2px solid #cdc092;
}

.profiles_mobile {
	position: relative;
	background-color: #3b3c42;
	border-radius: 2px;
	margin-bottom: 4px;
	border: 2px solid #3b3c42;
	border: 2px solid #C2AB72;
}

.profiles_mobile p {
	padding: 16px;
	background-color: #ffffff;
	text-align: left;
	padding-bottom: 0;
	font-family: "Cabin";
}

.profiles_mobile p:last-of-type {
	padding-bottom: 16px;
}

.profiles_mobile img {
	max-width: 100%;
	width: 100%;
	max-width: 493px;
	border-radius: 2px 2px 0 0;
	text-align: center;
	display: block;
	margin: 0 auto;
	box-sizing: border-box;
	position: relative;
	background-color: #2B2C2F;
	border-bottom: none;
}

.profile_container_mobile {
	display: block;
	border-radius: 0 0 2px 2px;
	margin: 0 auto;
	max-width: 493px;
	box-sizing: border-box;
	background-color: #ffffff;
	border-top: none;
}



/***********************/
/* Purchase & CW Modal */
/***********************/

.purchase_options {
	color: #DDDDDD;
	text-align: left;
}

.po_option {
	text-align: center;
	background-color: #2B2C2F;
}

.cw_opt {
	text-align: left;
	font-size: 17px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 86px;
	line-height: 1.3;
	font-family: "Cabin";
}

.modal_text {
	font-family: "Cabin";
	text-align: center;
	margin-bottom: 10px;
}

.purchase_options > p:nth-of-type(2) {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
}

.purchase_options > p:last-of-type {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
}

.po_modal_container {
	position: fixed;
	top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
	background-color: rgba(0, 0, 0, 0.6);
	display: none;
	width: 100%;
	height: 100vh;
	z-index: 39;
}

.po_modal {
    position: relative;
	background-color: #232324;
	border-radius: 2px;
	border: 2px solid #C2AB72;
	box-sizing: border-box;
	z-index: 8;
	padding: 30px 100px;
	margin-left: 20px;
	margin-right: 20px;
	min-height: 200px;
	min-width: 480px;
	display: none;
}

.cw_modal {
    position: relative;
	background-color: #232324;
	border-radius: 2px;
	border: 2px solid #C2AB72;
	box-sizing: border-box;
	z-index: 8;
	padding: 30px 30px;
	margin-left: 20px;
	margin-right: 20px;
	min-height: 200px;
	min-width: 480px;
	max-width: 480px;
	display: none;
}

.po_option a {
	display: flex !important;
	width: auto !important;
	border-radius: 2px;
	background-color: #232324;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
	height: 34px;
	justify-content: center;
	align-items: center;
	font-size: 19px;
}

.po_option a:hover {
	background-color: #242425;
	color: #f7eed0;
	transition: all linear 10ms;
}

.modal_option a {
	padding-right: 30px;
	padding-left: 30px;
}

.support_me p {
	font-size: 17px;
	font-family: "Cabin";
	max-width: 1000px;
	margin: 0 auto;
	display: block;
	padding-left: 20px;
	padding-right: 20px;
}

.po_header {
	text-align: center;
	font-size: 20px;
	padding-bottom: 8px;
	margin-bottom: 22px;
}

.po_choices_pb, .po_choices_hc, .po_choices_eb {
	display: none;
}

.po_divider_header {
	margin: 0 auto;
	margin-top: 4px;
	margin-bottom: 4px;
	text-align: center;
	display: block;
	height: 1px !important;
	width: 98% !important;
	padding: 0 !important;
	color: #2B2C2F !important;
	border-bottom: solid 1px #2B2C2F !important;
	border-radius: 0 !important;
}

.po_divider {
	margin: 0 auto;
	margin-top: 4px;
	margin-bottom: 4px;
	text-align: center;
	display: block;
	height: 1px !important;
	width: 40px !important;
	padding: 0 !important;
	color: #f7eed0;
	border-bottom: solid 1px #f7eed0;
	border-radius: 0 !important;
}


/* ************************ */
/* ******* Art Page ******* */
/* ************************ */

#art_wrapper {
	display: flex;
	margin: 0 auto;
	box-sizing: border-box;
	margin-top: 40px;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.art_grid {
	display: grid;
	grid-gap: 8px;
	grid-template-columns: repeat(4, 220px);
	grid-template-rows: repeat(3, 220px);
	/* background-color: #232324; */
	/* padding: 4px; */
}

.art_grid_item {
	background-color: #2B2C2F;
	border-radius: 2px;
	overflow: hidden;
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

.art_grid_item a:focus-visible {
	outline: 1px solid #ffffff;
	outline-offset: -1px;
}

.art_grid_item img {
	max-width: 220px;
	transition: all ease 550ms;
}

.art_grid_item img:hover {
	transform: scale(1.3) rotate(5deg);
	transition: all ease 550ms;
}

.art_grid_item span {
	display: flex;
	height: 220px;
	background-color: #2B2C2F;
	cursor: default;
	align-items: center;
	justify-content: center;
	color: #e2e2e2;
	line-height: 40px;
	text-align: center;
	font-size: 18px;
	font-family: "Cabin";
}

:root {
	--swiper-theme-color: #C2AB72 !important;
}

.swiper {
	display: block;
	text-align: center;
	line-height: 0;
}

.swiper-slide img {
	border: 4px solid #34373C;
	box-sizing: border-box;
	min-height: 200px;
	max-width: 610px;
	max-height: 760px;
	width: 100%;
}

.swiper-pagination {
	bottom: 2px !important;
}

.swiper-pagination-bullet {
	background: var(--swiper-pagination-bullet-inactive-color, #2B2C2F) !important;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

/* **************************** */
/* ******* Gallery Page ******* */
/* **************************** */

.gallery_wrapper {
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	margin-top: 40px;
	border-radius: 2px;
	transition: all ease 300ms;
}

.galleryImage {
	position: relative;
}

.galleryImageDesc {
	background-color: #2B2C2F;
	display: flex;
	width: 100%;
	min-height: 60px;
	border-radius: 2px;
	box-sizing: border-box;
	justify-content: center;
	align-items: center;
	padding: 8px;
	padding-top: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.galleryImageDesc p {
	position: relative;
	background-color: #232324;
	border-radius: 4px;
	padding: 10px;
	font-family: "Cabin";
}

.image_wrapper {
	position: relative;
	text-align: center;
	background-color: #2B2C2F;
	padding-left: 60px;
	padding-right: 60px;
	padding-top: 8px;
	padding-bottom: 8px;
	border-radius: 2px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	box-sizing: border-box;
	width: 1280px;
	height: 800px;
	max-height: 800px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all ease 300ms;
}

.image_wrapper img {
	display: block;
	box-sizing: border-box;
	position: relative;
	max-height: 780px;
	text-align: center;
	border-radius: 2px;
	max-width: 100%;
	margin: 0 auto;
	transition: all ease 700ms;
}

.previousArrow {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 60px;
	font-size: 120px;
	align-items: center;
	cursor: pointer;
	color: #C2AB72;
	text-align: center;
	box-sizing: border-box;
	margin: auto 0;
	transition: all linear 250ms;
	z-index: 3;
	background-color: rgba(43, 44, 47, 0.8);
	border-radius: 2px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.previousArrow button {
	transition: all linear 200ms;
	height: 100%;
	width: 100%;
	display:flex;
	align-items:center;
	justify-content: center;
	color: #C2AB72;
	background-color: rgba(43, 44, 47, 0.8);
	border: none;
	outline: none;
	margin: 0;
	padding: 0;
	cursor: pointer;
	border-radius: 2px;
}

.previousArrow button:focus-visible {
	outline: 1px solid #ffffff;
	border-radius: 2px;
}

.previousArrow button:hover {
	color: #f7eed0;
	transition: all linear 150ms;
}

.nextArrow {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 60px;
	font-size: 120px;
	cursor: pointer;
	color: #C2AB72;
	text-align: center;
	box-sizing: border-box;
	background-color: rgba(43, 44, 47, 0.8);
	border-radius: 2px;
	margin: auto 0;
	transition: all linear 250ms;
	z-index: 3;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.nextArrow button {
	transition: all linear 200ms;
	height: 100%;
	width: 100%;
	display:flex;
	align-items:center;
	justify-content: center;
	color: #C2AB72;
	background-color: rgba(43, 44, 47, 0.8);
	border: none;
	outline: none;
	margin: 0;
	padding: 0;
	cursor: pointer;
	border-radius: 2px;
}

.nextArrow button:focus-visible {
	outline: 1px solid #ffffff;
	border-radius: 2px;
}

.nextArrow button:hover {
	color: #f7eed0;
	transition: all linear 150ms;
}

.back {
	position: fixed;
	left: 12px;
	top: 80px;
	font-size: 30px;
	z-index: 5;
	border-radius: 2px;
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.back a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 42px;
	width: 42px;
	line-height: 40px;
	color: #e2e2e2;
	border-radius: 2px;
	box-sizing: border-box;
	transition: all linear 100ms;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	margin: 0 auto;
	font-weight: bold;
}


.backModal {
	position: absolute;
	left: 1px;
	top: 1px;
	z-index: 4;
	border-radius: 2px;
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	display: none;
}

.backModal a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	width: 30px;
	line-height: 30px;
	font-size: 26px;
	font-weight: bold;
	color: #e2e2e2;
	border-radius: 2px;
	box-sizing: border-box;
	transition: all linear 100ms;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	margin: 0 auto;
}

.closeModal {
	position: absolute;
	right: 4px;
	top: 4px;
	z-index: 4;
	border-radius: 2px;
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.closeModal a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	width: 30px;
	line-height: 30px;
	font-size: 16px;
	font-weight: bold;
	color: #e2e2e2;
	border-radius: 2px;
	box-sizing: border-box;
	transition: all linear 100ms;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	margin: 0 auto;
}

.close_wd {
	position: absolute;
	right: 4px;
	top: 4px;
	font-weight: bold;
	z-index: 4;
	border-radius: 2px;
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.close_wd a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 24px;
	width: 24px;
	font-size: 16px;
	line-height: 26px;
	color: #2B2C2F;
	background-color: rgba(0, 0, 0, 0);
	box-sizing: border-box;
	transition: all linear 100ms;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	margin: 0 auto;
}


/* ************************** */
/* ******* About Page ******* */
/* ************************** */

#about_container {
	width: 944px;
	margin: 0 auto;
	text-align: center;
}

#about_container p {
	font-family: "Cabin";
	line-height: 1.3;
	padding-bottom: 20px;
	text-align: left;
	padding-left: 80px;
	padding-right: 80px;
}

#aboutPortrait {
	display: inline-block;
	margin: 0 auto;
	position: relative;
	box-sizing: border-box;
	background-color: #2B2C2F;
	transition: all linear 200ms;
	padding: 4px;
	margin-top: 40px;
	margin-bottom: 40px;
	border-radius: 2px;
}

#aboutPortrait img {
	position: relative;
	margin: 0 auto;
	display: block;
	max-width: 360px;
	min-width: 240px;
	width: 40vw;
	border-radius: 2px;
}


/* *************************** */
/* ********** World ********** */
/* *************************** */

.world_mapping {
	display: block;
	background-color: #2ab0e1;
	border-radius: 2px;
	width: fit-content;
	margin: 0 auto;
	border: 4px solid #2B2C2F;
	box-sizing: border-box;
	margin-top: 70px;
	position: relative;
	height: auto;
	min-height: 340px;
	line-height: 0;
	overflow: hidden;
}

.img_fullMap {
	height: calc(100vh - 140px);
	max-height: 1040px;
	min-height: 770px;
	width: auto;
}

.svg_mapOverlay {
	position: absolute;
	top: 0;
    left: 0;
	height: calc(100vh - 140px);
	max-height: 1040px;
	min-height: 770px;
	width: auto;
}

g {
    cursor: pointer;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transition: all linear 400ms;
}

#argotra, #metizallic, #varda, #zide_empire, #whispering_waters, #mardan, #tokorum_cove {
    fill-opacity: 0;
    stroke-width: 3;
    stroke-miterlimit: 1;
}

#argotra:hover, .argotra_active {
	/* red */
    fill: #a50000 !important;
    fill-opacity: 0.2 !important;
    stroke: #a50000 !important;
    transition: all linear 400ms !important;
}

#metizallic:hover, .metizallic_active {
	/* blue */
    fill: #003fa3 !important;
    fill-opacity: 0.2 !important;
    stroke: #003fa3 !important;
    transition: all linear 400ms !important;
}

#varda:hover, .varda_active {
	/* green */
    fill: #106b00 !important;
    fill-opacity: 0.2 !important;
    stroke: #106b00 !important;
    transition: all linear 400ms !important;
}

#zide_empire:hover, .zide_empire_active {
	/* tan */
    fill: #ceb605 !important;
    fill-opacity: 0.2 !important;
    stroke: #ceb605 !important;
    transition: all linear 400ms !important;
}

#whispering_waters:hover, .whispering_waters_active {
	/* midnight blue */
    fill: #2d3045 !important;
    fill-opacity: 0.2 !important;
    stroke: #2d3045 !important;
    transition: all linear 400ms !important;
}

#mardan:hover, .mardan_active {
	/* purple */
    fill: #671b87 !important;
    fill-opacity: 0.2 !important;
    stroke: #671b87 !important;
    transition: all linear 400ms !important;
}

#tokorum_cove:hover, .tokorum_cove_active {
	/* orange */
    fill: #ed8203 !important;
    fill-opacity: 0.2 !important;
    stroke: #ed8203 !important;
    transition: all linear 400ms !important;
}

.world_details_container {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	display: block;
	width: 25%;
	min-width: 340px;
	height: auto;
	padding: 20px;
	box-sizing: border-box;
	transition: visibility 400ms ease-in, opacity 400ms ease-in;
}

.world_details_container p {
	font-family: "Cabin";
}

.hide_details_container {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	transition: visibility 400ms ease-in, opacity 400ms ease-in;
}

.world_details_panel {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #e2e2e2;
	border: 2px solid #C2AB72;
	border-top: none;
	border-bottom: none;
	border-right: none;
	box-sizing: border-box;
	padding: 20px;
	transition: visibility 400ms ease-in, opacity 400ms ease-in, left 400ms ease-in, right 400ms ease-in;
	overflow-y: auto;
}

.world_details_panel::-webkit-scrollbar {
	width: 12px;
}

.world_details_panel::-webkit-scrollbar-track {
	background-color: #fff;
}

.world_details_panel::-webkit-scrollbar-thumb {
	border: 2px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    border-radius: 2px;
	background-color: #C2AB72;
}

.hide_details_panel {
	right: -25%;
	transition: all 400ms ease-in;
}

.mapping_details {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	line-height: 1.15;
	padding: 20px;
	height: fit-content;
	transition: visibility 400ms ease-in, opacity 400ms ease-in;
}

.crest {
	position: relative;
	display: block;
	width: 120px;
	margin: 0 auto;
	margin-top: 22px;
	margin-bottom: 34px;
}

.mapping_details h2 {
	color: #2B2C2F;
	background-image: linear-gradient(#2B2C2F, #2B2C2F);
	background-size: 25% 1px;
	background-position: bottom center;
	background-repeat: no-repeat;
	margin-top: 10px;
	padding-bottom: 30px;
	margin-bottom: 40px;
}

.mapping_details p {
	color: #2B2C2F;
	font-size: 18px;
}

.wd_info p {
	margin-top: 2px;
	margin-bottom: 2px;
}

.wd_divider {
	margin: 0 auto;
	margin-top: 40px;
	margin-bottom: 40px;
	text-align: center;
	display: block;
	height: 1px;
	width: 25%;
	color: #2B2C2f;
	border-bottom: solid 1px #2B2C2f;
}

.wd_text p {
	margin-top: 20px;
	margin-bottom: 20px;
}

.wd_text p:last-of-type {
	margin-bottom: 0;
}

.world_pagination {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 24px;
	width: fit-content;
	margin: auto;
	margin-top: 3px;
	margin-bottom: 3px;
	padding: 2px;
	box-sizing: border-box;
	display: flex;
	border-radius: 2px;
	justify-content: center;
	align-items: center;
	transition: all linear 400ms;
}

.wp_btn {
	height: 12px;
	width: 12px;
	border-radius: 50%;
	box-sizing: border-box;
	margin-right: 12px;
	cursor: pointer;
	transition: all linear 200ms;
	opacity: 0.6;
	border: 1px solid #fff;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.wp_btn:last-of-type {
	margin-right: 0;
}

.wp_btn:after {
  content: "";
  z-index: -1;
  display: block;
  position: relative;
  top: -7px;
  left: -7px;
  border: 12px solid rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.wp_active {
	transform: scale(1.40);
	opacity: 0.7;
}

#wp_argotra {
	background-color: #a50000;
}

#wp_metizallic {
	background-color: #003fa3;
}

#wp_varda {
	background-color: #106b00;
}

#wp_zide_empire {
	background-color: #ceb605;
}

#wp_whispering_waters {
	background-color: #2d3045;
}

#wp_mardan {
	background-color: #671b87;
}

#wp_tokorum_cove {
	background-color: #ed8203;
}

.mapping_learn_more_desktop {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	margin: auto;
	width: auto;
	line-height: 1.15;
	background-color: rgba(0, 0, 0, 0.6);
	text-align: center;
	padding: 8px;
	font-size: 18px;
	transition: visibility 400ms ease-in, opacity 400ms ease-in;
}

.mapping_learn_more_mobile {
	display: none;
}

.mapping_movable {
	position: absolute;
	top: 48px;
	left: 11px;
	width: 38px;
	height: 38px;
	transition: visibility 400ms ease-in, opacity 400ms ease-in;
	background-image: url("../images/world/movable_icon.png");
	background-repeat: no-repeat;
    background-size: cover;
	opacity: 0.6;
	cursor: grab;
	display: none;
}

.map_wrapper {
	display: block;
}

.factions_container {
	position: relative;
	margin: 0 auto;
	width: 980px;
	padding: 2px;
	border-radius: 2px;
	box-sizing: border-box;
	background-color: #fff;
	background-color: #cdc092;
	margin-top: 40px;
}

.factions_container p {
	text-align: center;
	font-size: 20px;
	color: #2B2C2F;
}

.factions_top {
	display: flex;
	margin-bottom: 2px;
	box-sizing: border-box;
}

.factions_bottom {
	position: relative;
	display: block;
	box-sizing: border-box;
	height: 400px;
	background-color: #fff;
	border-radius: 2px;
}

.factions_info {
	position: absolute;
	top: 0;
	left: 0;
	margin: auto;
	box-sizing: border-box;
	padding: 20px;
	display: block;
	height: fit-content;
	border-radius: 2px;
	transition: all linear 500ms;
}

.factions_info h3 {
	font-size: 30px;
	text-align: center;
	display: block;
	padding-bottom: 30px;
	padding-top: 10px;
	color: #2B2C2F;
}

.factions_info p {
	font-size: 18px;
	font-family: "Cabin";
	line-height: 1.3;
	text-align: left;
	margin-bottom: 20px;
	color: #2B2C2F;
}

.factions_info p:last-of-type {
	margin-bottom: 0;
}

.factions {
	position: relative;
	min-height: 210px;
	height: 210px;
	width: 100%;
	display: block;
	margin-right: 2px;
	border-radius: 2px;
	cursor: pointer;
	box-sizing: border-box;
	overflow: hidden;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	line-height: 0;
	background-color: #2B2C2F;
	transition: all ease 150ms;
}

.factions img {
	width: 100%;
    height: auto;
    display: block;
    transition: all ease 150ms;
    opacity: 0.3;
	background-color: #2B2C2F;
}

.factions img:hover {
	transform: scale(1.20);
	transition: all ease 150ms;
	opacity: 1;
}

.active_faction {
	transform: scale(1.20);
	opacity: 1 !important;
}

.factions:last-of-type {
	margin-right: 0;
}

.mobile_img_container {
	position: relative;
	display: block;
	overflow: hidden;
}

.identity_name_desktop {
	display: flex;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-color: rgba(0, 0, 0, 0.4);
	width: auto;
	height: 32px;
	line-height: 0;
	font-size: 19px;
	justify-content: center;
	align-items: center;
	color: #fff;
	pointer-events : none;
}

.identity_name {
	display: flex;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-color: rgba(0, 0, 0, 0.4);
	width: auto;
	height: 40px;
	line-height: 0;
	font-size: 20px;
	justify-content: center;
	align-items: center;
	color: #fff;
	margin-left: 2px;
	margin-right: 2px;
}

.deities_container {
	display: flex;
	position: relative;
	margin: 0 auto;
	max-width: 980px;
	min-width: 640px;
	padding: 4px;
	border-radius: 2px;
	box-sizing: border-box;
	background-color: #2B2C2F;
	margin-top: 40px;
	border: 2px solid #232324;
}

.deities_left {
	position: relative;
	box-sizing: border-box;
}

.deities_right {
	position: relative;
	box-sizing: border-box;
}

.deities_center {
	position: relative;
	box-sizing: border-box;
	display: flex;
	border: 2px solid #1d1d1d;
	border-radius: 2px;
	width: 100%;
	height: auto;
	margin-left: 4px;
	margin-right: 4px;
	background-color: #232324;
}

.deities {
	margin-bottom: 4px;
	box-sizing: border-box;
	position: relative;
	min-height: 112px;
	height: 112px;
	width: 112px;
	display: block;
	border: 2px solid #232324;
	border-radius: 2px;
	cursor: pointer;
	box-sizing: border-box;
	overflow: hidden;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	line-height: 0;
	background-color: #2B2C2F;
	transition: all ease 150ms;
}

.deities_info {
	position: absolute;
	top: 0;
	left: 0;
	margin: auto;
	box-sizing: border-box;
	padding: 20px;
	display: block;
	height: fit-content;
	border-radius: 2px;
	transition: all linear 500ms;
}

.deities:last-of-type {
	margin-bottom: 0;
}

.deities img {
	width: 100%;
    height: auto;
    display: block;
    transition: all ease 150ms;
    opacity: 0.3;
	background-color: #2B2C2F;
}

.deities img:hover {
	transform: scale(1.20);
	transition: all ease 150ms;
	opacity: 1;
}

.active_deity {
	transform: scale(1.20);
	opacity: 1 !important;
}

.deity_name {
	display: flex;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-color: rgba(0, 0, 0, 0.4);
	width: 100%;
	height: 28px;
	line-height: 0;
	font-size: 18px;
	justify-content: center;
	align-items: center;
	color: #fff;
	pointer-events : none;
}

.deities_container p {
	text-align: center;
	font-size: 20px;
	color: #2B2C2F;
	color: #fff;
}

.deities_info h3 {
	font-size: 30px;
	text-align: center;
	display: block;
	padding-bottom: 10px;
	padding-top: 10px;
	color: #2B2C2F;
	color: #fff;
}

.deities_info p {
	font-size: 18px;
	text-align: left;
	margin-bottom: 20px;
	color: #2B2C2F;
	color: #fff;
	font-family: "Cabin";
	line-height: 1.3;
}

.deities_info p:last-of-type {
	margin-bottom: 0;
}

.deity_num {
	text-align: center !important;
	font-size: 20px !important;
	font-family: "Cardo" !important;
	padding-bottom: 40px !important;
}

.deity_symbol {
	width: 108px;
	border-radius: 50%;
	margin-bottom: 24px;
}

/* deity mobile */
.deities_mobile {
	display: none;
	margin: 0 auto;
	position: relative;
	margin-top: 30px;
}

.deities_center_mobile {
	position: relative;
	display: block;
	background-color: #2B2C2F;
	border-radius: 2px;
	box-sizing: border-box;
	padding: 4px;
	border: 2px solid #232324
}

.deities_mobile p {
	text-align: center;
	color: #fff;
}

.deities_info_mobile {
	box-sizing: border-box;
	padding: 20px;
	display: block;
	border-radius: 2px;
	transition: all linear 400ms;
	background-color: #232324;
	margin-bottom: 4px;
	border: 2px solid #181818;
}

.deities_info_mobile:last-of-type {
	margin-bottom: 0;
}

.deities_info_mobile h3 {
	font-size: 28px;
	text-align: center;
	display: block;
	padding-bottom: 10px;
	padding-top: 10px;
	color: #fff;
}

.deities_info_mobile p {
	font-family: "Cabin";
	line-height: 1.3;
	text-align: left;
	margin-bottom: 20px;
	color: #fff;
}



.deities_info_mobile p:last-of-type {
	margin-bottom: 0;
}

/* ******************************** */
/* ********** Links Page ********** */
/* ******************************** */

.links_wrapper {
	min-height: 820px;
}

.top_photo {
	display: flex;
	align-items: center;
	justify-content: center;
}

.top_photo img {
	height: 160px;
	position: relative;
	border-radius: 160px;
	border: 2px solid #2B2C2F;
}

.links_title {
	display: block;
	margin: 30px;
}

.links_title p {
	text-align: center;
	color: #C2AB72;
	margin: 10px;
}

.links_section {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.links_container {
	background-color: #2B2C2F;
	display: block;
	padding: 4px;
	border-radius: 2px;
	box-sizing: border-box;
}

.links {
	height: 56px;
	width: 520px;
	background-color: #232324;
	transition: all linear 120ms;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	position: relative;
	overflow: hidden;
	margin-top: 4px;
}

.links:first-of-type {
	margin-top: 0;
}

.links a, .links p {
	position: relative;
	color: #e2e2e2;
	height: 100%;
	width: 100%;
	transition: all linear 120ms;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
	font-size: 18px;
}

.links:hover {
	background-color: #1d1d1d;
	transition: all linear 120ms;
}

.links a:hover, .links p:hover {
	transition: all linear 120ms;
}

/* ***************************** */
/* ********** Summary ********** */
/* ***************************** */

.summary_header {
	margin-top: 30px !important;
	margin-bottom: 40px;
}

.summary_titleband {
	display: block;
	position: relative;
	line-height: 0;
}

.summary_titleband img {
	width: 100%;
	border-bottom: 2px solid #C2AB72;
}

.summary_wrapper {
	display: block;
	margin: 0 auto;
	width: 944px;
	border: 2px solid #C2AB72;
	margin-top: 40px;
	box-sizing: border-box;
	border-radius: 2px;
	line-height: 1.3;
	transition: all linear 200ms;
	margin-top: 70px;
}

.summary_wrapper p {
	margin-bottom: 20px;
	text-align: justify;
}

.summary_wrapper p:last-of-type {
	margin-bottom: 0;
}

.summary_desc_container {
	display: block;
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 2px;
	border: 1px solid rgba(0, 0, 0, 0.3);
	padding: 20px;
	text-align: center;
	margin: 20px;
	margin-bottom: 8px;
}

.summary_desc_container p {
	font-family: "Cabin";
	text-align: center !important;
}

.summary_desc_container p:first-of-type {
	margin-top: 0;
}

.summary_content {
	padding: 20px 80px;
	position: relative;
	font-family: "Cabin";
}

.summary_content ul {
	display: block;
}

.summary_content li {
	list-style: disc;
	margin-bottom: 14px;
}

.summary_content li:last-of-type {
	margin-bottom: 0px;
}

.summary_section_title {
	font-weight: bold;
	font-size: 22px;
	padding-bottom: 14px;
}

.guide_container > div > p {
	font-size: 20px;
	font-weight: bold;
	text-decoration: underline;
	margin-bottom: 16px !important;
}

.guide_container p {
	margin-bottom: 0;
	text-align: left;
	margin-bottom: 4px;
	font-family: "Cabin";
}

.guide_content {
	padding: 40px 60px !important;
}

.theme_container {
	position: absolute;
	right: 8px;
	top: 8px;
	display: flex;
	width: 116px;
	height: 34px;
	border: 2px solid #cdc092;
	border-radius: 2px;
	background-color: #34373C;
}

.theme_container div {
	width: 50%;
}

.theme_container div:first-of-type {
	border-right: 1px solid #cdc092;
}

.theme_container button {
	width: 100%;
	height: 100%;
	outline: none;
	border: none;
	font-size: 16px;
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
	transition: all linear 75ms;
}

.theme_active {
	background-color: #34373C !important;
	color: #fff !important;
}

.theme_light {
	color: #000 !important;
	background-color: #fff !important;
}

.theme_dark {
	color: #f2f2f2 !important;
	background-color: #2B2C2F !important;
}


/* *********************** */
/* ****** Exclusive ****** */
/* *********************** */

.exclusive_container {
	display: block;
	margin: 0 auto;
	width: 944px;
	border: 2px solid #C2AB72;
	margin-top: 40px;
	box-sizing: border-box;
	border-radius: 2px;
	background-color: #ffffff;
	padding: 120px;
	color: #000000;
	transition: all linear 200ms;
}

.exclusive_container p {
	margin-bottom: 20px;
	text-align: justify;
	line-height: 1.2;
}

.exclusive_container p:last-child {
	margin-bottom: 0;
}

.exclusive_container a {
	display: inline;
}

.exclusive_container a:hover {
	opacity: 0.8;
	color: #C2AB72;
}

.exclusive_container h3 {
	font-weight: bold;
	margin-bottom: 8px;
}

.exclusive_container h6 {
	font-style: italic;
	padding-bottom: 30px;
	margin-bottom: 30px;
	background-image: linear-gradient(#000000, #000000);
	background-size: 10% 1px;
	background-position: bottom center;
	background-repeat: no-repeat;
}

.quoteBlock {
	margin-bottom: 20px;
}

.quoteBlock p {
	margin: 0 !important;
	font-style: italic;
}


/* ********************** */
/* ******* Fonts ******* */
/* ********************* */

@font-face {
	font-family: "Cardo";
	src: url(../fonts/Cardo-Regular.ttf);
	font-weight: normal;
}

@font-face {
	font-family: "Cardo";
	src: url(../fonts/Cardo-Bold.ttf);
	font-weight: bold;
}

@font-face {
	font-family: "Cardo";
	src: url(../fonts/Cardo-Italic.ttf);
	font-style: italic;
}

@font-face {
	font-family: "Cabin";
	src: url(../fonts/Cabin-Regular.ttf);
	font-weight: normal;
}

@font-face {
	font-family: "Cabin";
	src: url(../fonts/Cabin-Bold.ttf);
	font-weight: bold;
}

@font-face {
	font-family: "Cabin";
	src: url(../fonts/Cabin-Italic.ttf);
	font-style: italic;
}

/* ***************************** */
/* ******* Media Queries ******* */
/* ***************************** */

/* --- Transition to Smaller Screens --- */
@media (max-width : 1400px) {
	.image_wrapper {
		width: 1080px;
	}

	.world_mapping {
		width: 100%;
		margin-top: 70px;
		height: auto;
		overflow: hidden;
		max-height: calc(100vh - 152px);
		-ms-overflow-style: none;
	    scrollbar-width: none;
	}

	.world_mapping::-webkit-scrollbar {
		display: none;
	}

	.mapping_learn_more_desktop {
		display: none;
	}

	.mapping_learn_more_mobile {
		display: block;
		position: absolute;
		top: 94px;
		left: 24px;
		right: 24px;
		z-index: 10;
		margin: auto;
		width: auto;
		line-height: 1.15;
		background-color: rgba(0, 0, 0, 0.6);
		text-align: center;
		padding: 8px;
		font-size: 18px;
		transition: visibility 400ms ease-in, opacity 400ms ease-in;
	}

	.mapping_movable {
		display: block;
	}

	.map_wrapper {
		cursor: grab;
	}

	.world_details_container {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		background-color: rgba(0, 0, 0, 0.6);
		padding: 20px;
		padding-bottom: 30px;
		width: auto;
		height: auto;
		display: block;
	}

	.world_details_panel {
		position: relative;
		border: 2px solid #C2AB72;
		display: block;
		margin: 0 auto;
		max-width: 420px;
		box-sizing: border-box;
		width: auto;
		height: 100%;
	}

	.hide_details_panel {
		position: absolute;
		top: 20px;
		right: 0;
		left: 0;
		bottom: 0;
		width: calc(100% - 40px);
		height: calc(100% - 50px);
		margin: 0 auto;
		opacity: 0;
		visibility: hidden;
		transition: visibility 400ms ease-in, opacity 400ms ease-in;
	}

	.mapping_details {
		padding: 18px;
	}

}


/* --- Smaller. --- */
@media (max-width : 1260px) {
	.back {
		display: none;
	}
}


/* --- Smaller. --- */
@media (max-width : 1200px) {
	#bookCover_container {
		width: 100%;
	}

	.books_flex {
		width: 100%;
	}

	.books_grid {
		width: auto;
		height: auto;
	}

	.books, .books img {
		max-width: 300px;
	}

}

/* --- Smaller. --- */
@media (max-width : 1160px) {
	.links_section {
		margin-top: -10px;
	}

	#mobileNav a {
		line-height: 54px;
		padding-left: 6px;
		padding-right: 6px;
	}

	footer {
	    height: auto;
		display: block;
		padding: 40px;
	}

	#footerNav {
		display: block;
		flex: none;
		margin: 0 auto;
		text-align: center;
		padding-bottom: 30px;
	}

	#footerNav a {
		width: 180px;
		margin: 0 auto;
	}

	.socialMedia {
		margin: 0 auto;
		text-align: center;
		display: flex;
		flex: none;
		padding-bottom: 40px;
	}

	#copyright {
		margin: 0 auto;
		text-align: center;
		display: block;
		flex: none;
		padding-bottom: 0;
	}

	.gallery_wrapper {
		max-width: 100%;
	}

	.image_wrapper {
		max-width: 100%;
		width: 100vh;
		height: 100%;
		min-height: 480px;
	}

}

/* --- Smaller.. --- */
@media (max-width : 1040px) {
	h1 {font-size: 36px;}
	h2 {font-size: 31px;}
	h3 {font-size: 28px;}
	h4 {font-size: 25px;}
	h5 {font-size: 23px;}
	p  {font-size: 18px;}
	a  {font-size: 19px;}

	.books, .books img {
		max-width: 260px;
	}

	.books_flex {
		display: block;
		width: 100%;
	}

	#bookCover div {
		position: relative;
		display: block;
		width: auto;
		padding: 4px;
		margin: 0 auto;
	}

	#bookCover div img {
		max-width: 360px;
		width: 72%;
		margin: 0 auto;
		margin-top: 14px;
	}

	.books_btn_container {
		max-width: 360px;
		width: 72% !important;
		margin-bottom: 14px !important;
	}

	.reviews_parent, #about_container, .foate_summary, .summary_wrapper {
		width: 100%;
	}

	.art_grid {
		grid-template-columns: repeat(3, 220px);
		grid-template-rows: repeat(4, 220px);
	}

	#character_container {
		display: none;
	}

	.mobile_container {
		display: inline-block;
	}

	.profile_container_mobile h5 {
		padding-top: 20px;
	}

	.exclusive_container, #newsletterTool_container, #login_container {
		width: 100%;
		padding: 80px;
	}

	.summary_content {
		padding: 20px 32px;
	}

	.guide_content {
		padding: 20px !important;
	}

	.review {
		width: 100%;
		height: auto;
	}

	.mapping_details {
		padding: 16px;
	}

	.factions_container {
		display: none;
	}

}


/* --- Smaller.. --- */
@media (max-width : 940px) {
	.books_grid {
		flex-direction: column;
	}

	.books, .books img {
		max-width: 360px;
	}

}


/* --- Smaller.. --- */
@media (max-width : 860px) {
	h1 {font-size: 34px;}
	h2 {font-size: 30px;}
	h3 {font-size: 27px;}
	h4 {font-size: 24px;}
	h5 {font-size: 22px;}

	.books, .books img {
		max-width: 320px;
	}

	input[type=submit] {
		font-size: 19px;
	}

	.form_container {
		width: 100%;
	}

	.leftAlign {
		padding-right: 36px;
	}

	#nav a {
		padding-left: 14px;
		padding-right: 14px;
	}

	.world_details_container {
		min-width: initial;
	}

}

/* --- Anything not mobile... --- */
@media (min-width : 759px) {
	.wp_btn:hover {
		transform: scale(1.40);
		opacity: 0.7;
		transition: all linear 100ms;
	}

	.books_po_btn:hover {
		background-color: #1d1d1d;
		transition: all linear 120ms;
	}

	.theme_container button:hover {
		background-color: #34373C;
		color: #fff;
		transition: all linear 75ms;
	}

	.books a:hover > .tropes  {
		transform: scale(1);
		transition: all ease 300ms;
		visibility: visible;
		opacity: 1;
	}

	.books a:hover > .book_hover {
		transform: scale(0.95);
		transition: all ease 300ms;
	}

}

/* --- Essentially Mobile... --- */
@media (max-width : 760px) {
	h1 {font-size: 31px;}
	h2 {font-size: 28px;}
	h3 {font-size: 26px;}
	h4 {font-size: 22px;}
	h5 {font-size: 21px;}
	p {font-size: 18px;}
	a {font-size: 18px;}

	.form_container label, .form_container p {
		font-size: 18px;
	}

	input[type=text], input[type=email], input[type=password] {
		margin-top: 8px;
	}

	.volumeTitleFirst {
		margin-top: 30px;
	}

	.summary_desc_container p {
		font-size: 18px;
	}

	.guide_container > div > p {
		font-size: 19px;
	}

	.guide_container p {
		margin-bottom: 6px;
	}

	.links a, .links p {
		font-size: 16px;
	}

	.cw_opt {
		font-size: 16px;
	}

	.section_dark h1 {
		margin-top: 10px;
		padding-bottom: 30px;
	}

	.section_light h1 {
		margin-top: 10px;
		padding-bottom: 30px;
	}

	.section_first {
		margin-top: 56px;
	}

	.summary_header {
		margin-top: 8px !important;
	}

	.links, .links_container, .links_sub_container {
		width: 100%;
	}

	.links_wrapper {
		min-height: auto;
	}

	.world_mapping {
		margin-top: 56px;
	}

	.summary_wrapper {
		margin-top: 56px;
	}

	.summary_divider {
		margin-top: 16px;
		margin-bottom: 16px;
	}

	.summary_section_title {
		font-size: 20px;
	}

	.mapping_learn_more_mobile {
		top: 80px;
	}

	.crest {
		margin-bottom: 16px;
	}

	.mapping_details {
		padding: 14px;
	}

	.mapping_details p {
		font-size: 16px;
	}

	.world_details_panel {
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.world_details_panel::-webkit-scrollbar {
		display: none;
	}

	.books_blurb_wrapper {
		padding-top: 0;
	}

	.books_flex {
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.reviews_container {
		margin-top: 30px;
	}

	#header {
		height: 56px;
	}

	#newsletter {
		scroll-margin-top: 56px;
	}

	#main_logo {
		height: 50px;
	}

	#nav {
		opacity: 0;
		visibility: hidden;
		display: none;
	}

	#mobileNav {
		display: block;
	}

	.leftAlign {
		margin-left: 3vw;
	}

	.hamburger {
		opacity: 1 !important;
		visibility: visible !important;
	}

	#invisFlex {
		display: block;
	}

	#overlay {
		background-color: rgba(0, 0, 0, 0.6);
		width: 100%;
		height: 100vh;
		position: fixed;
		top: 56px;
		left: 0;
		display: block;
	}

	#mobileNav ul li:not(:last-child):after {
	    content: "";
	    display: block;
	    margin: 0 auto;
	    width: 50%;
	    border-bottom: 1px solid #f7eed0;
	}

	.books_grid {
		margin-top: 20px;
	}

	.books, .books img {
		max-width: 260px;
	}

	.books {
		margin-top: 0;
		margin-bottom: 20px;
	}

	.books:last-of-type {
		margin-bottom: 0;
	}

	#booksHeader {
		margin-top: 30px;
	}

	.blurb_header h4:last-of-type {
		padding-bottom: 0;
	}

	#about_container p {
		padding-left: 0;
		padding-right: 0;
	}

	#about_container p:last-of-type {
		padding-bottom: 0;
	}

	.form_container {
		margin-top: 30px;
		padding: 20px;
	}

	.form_container p {
		padding-bottom: 30px;
	}

	#aboutPortrait {
		margin-top: 30px;
		margin-bottom: 30px;
	}

	#art_wrapper, .mobile_container {
		margin-top: 30px;
	}

	#first_name_container, #email_container, #subject_container, #message_container {
		display: block;
	}

	footer {
		padding: 30px;
	}

	.art_grid {
		grid-template-columns: repeat(2, 220px);
		grid-template-rows: repeat(6, 220px);
	}

	.gallery_wrapper {
		margin-top: 30px;
	}

	.image_wrapper {
		padding-left: 30px;
		padding-right: 30px;
		transition: all linear 300ms;
	}

	.previousArrow {
		width: 30px;
		font-size: 90px;
		transition: all linear 300ms;
	}

	.nextArrow {
		width: 30px;
		font-size: 90px;
		transition: all linear 300ms;
	}

	.exclusive_container, #newsletterTool_container, #login_container {
		margin-top: 30px;
		padding-top: 40px;
		padding-bottom: 40px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.blurb_header {
		margin-bottom: 0;
	}

	.ff_banner {
		margin-top: 56px;
	}

	.books_po_btn {
		font-size: 16px;
	}

	.deities_container {
		display: none;
	}

	.deities_mobile {
		display: block;
	}

	.deity_num {
		padding-bottom: 20px !important;
	}

	.theme_container {
		right: 4px;
		top: 4px;
		width: 98px;
		height: 26px;
	}

	.theme_container button {
		font-size: 14px;
	}

}

/* --- Actual Mobile... --- */
@media (max-width : 540px) {

	p {font-size: 17px;}
	ul li {font-size: 17px;}

	.form_container label, .form_container p {
		font-size: 17px;
	}

	.summary_section_title {
		font-size: 19px;
	}

	.summary_desc_container p {
		font-size: 17px;
	}

	.art_grid_item span {
		font-size: 17px;
	}

	.po_option a {
		font-size: 17px;
	}

	.form_container p {
		font-size: 17px;
	}

	.po_header {
		font-size: 18px;
	}

	.po_modal {
		padding-right: 26px;
		padding-left: 26px;
		width: 100%;
		min-width: auto;
	}

	.cw_modal {
		padding-right: 26px;
		padding-left: 26px;
		width: 100%;
		min-width: auto;
	}

	.modal_option a {
		padding-right: 0;
		padding-left: 0;
	}

	input[type=submit] {
		font-size: 18px;
		line-height: 1;
	}

	.art_grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(6, 1fr);
	}

}

/* --- Smaller.... --- */
@media (max-width : 450px) {
	#statusBar_container {
		font-size: 14px;
	}
}

/* --- Smaller.... --- */
@media (max-width : 400px) {
	#copyrightContent p span {
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

/* --- Mozilla Firefox... --- */
@-moz-document url-prefix() {
	@media (min-width : 760px) {
		.world_details_panel {
			scrollbar-width: thin;
			scrollbar-color: #C2AB72 #fff;
		}
	}
}
