@charset "UTF-8";
/* 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,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-family: eskorte-latin, serif;font-size:100%;vertical-align:baseline}
html{line-height:1}
ol,ul{list-style:none}
table{border-collapse:collapse;border-spacing:0}
caption,th,td{text-align:left;font-weight:400;vertical-align:middle}
q,blockquote{quotes:none}
q:before,q:after,blockquote:before,blockquote:after{content:"";content:none}
a img{border:none}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}
*,:before,:after{box-sizing:border-box}
html,body{width:100%;min-height:100%;position:relative}
body{-webkit-backface-visibility:hidden;backface-visibility:hidden;font-size:14px;line-height:1.7; background-color: #FFF;overflow-x: hidden;font-family: eskorte-latin, serif;}
a{outline:none;text-decoration:none}
img{vertical-align:middle}
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}
.isHover{
	transition:opacity .3s ease-in-out;
	-webkit-transition:opacity .3s ease-in-out;
	-moz-transition:opacity .3s ease-in-out;
	-ms-transition:opacity .3s ease-in-out;
}
.isHover:hover {
	opacity:.6;
	cursor:pointer;
}
/*LOADER*/
#loader-bg {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #FFF;
	z-index: 1000;
	overflow: hidden;
}
#loader {
	display: none;
	position: absolute;
	z-index: 1001;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 800px;
}
#loader p {
	color: #000;
	font-size: 30px;
	position: absolute;
	text-transform: uppercase;
	top: -85px;
	margin-left: 3%;
}
#loader img {
	width: 90%;
	height: auto;
	 -webkit-animation: movement 2s infinite  alternate;
    animation: movement 2s infinite  alternate;
}
@keyframes movement {
    0% { transform: translateY(0); }
    100% { transform: translateY(-30px); }
}

/*NAVIGATION*/
nav {
	width: 100%;
}
button.hamburger {
    display: none;
}
.hamUL {
    background-image: url(../img/common/navbar.png);
    background-size: 1920px 47px;
    background-repeat: repeat-x;
    position: fixed;
    width: 100%;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 0;
    z-index: 100;
}
.hamUL li {
    display: inline-block;
    width: 14.2857%;
    height: 47px;
    text-align: center;
    color: rgb(253, 253, 227);
    font-size: 1.15rem;
    margin: 0;
    text-decoration: none;
    position: relative;
}
.hamUL li a {
    outline: none;
    text-decoration: none;
}
nav ul li a p {
    color: #FFF;
	width: 100%;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0px 0px 5px rgb(18,24,127), 0px 0px 10px rgb(18,24,127), 0px 0px 18px rgb(18,24,127), 0px 0px 25px rgb(18,24,127);
    text-transform: uppercase;
}
nav ul li a p:hover {
    color: rgb(18,24,127);
	text-shadow: 0px 0px 5px rgb(255,255,255), 0px 0px 8px rgb(255,255,255), 0px 0px 11px rgb(255,255,255), 0px 0px 15px rgb(255,255,255);
}
@media screen and (max-width: 1024px) {
	.hamUL li {
		width: 18%;
	}
}
@media screen and (max-width: 768px) {
	button.hamburger {
		display: block;
		position: fixed;
		z-index: 100;
		right: 0;
		top: 0;
	}
	.hamUL {
		background-repeat: repeat;	
		right: 0;
	}	
	.hamUL li {
		display: block;
		width: 50%;
		border-left: 1.5px solid rgb(18,24,127);
		border-bottom: 1.5px solid rgb(18,24,127);
	}
}

/*BODY*/
body {
/*
	background-image: url(../img/common/eox_Bg.jpg);
    background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: top center;
*/
    width: 100%;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    list-style: none;
	position: relative;
}
/*THIS BEFORE IS SUPER IMPORTANT AS IT ALLOWS MOBILE DEVICES TO HAVE FIXED BACKGROUND. Z-INDEX AT -10 IS NECESSARY, MUST BE 
LOWEST Z-INDEX*/
body:before {
	content: "";
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -10;
	background: url(../img/common/eox_Bg.jpg) no-repeat top center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
@media screen and (min-width: 1024px) {
	body {
		background-size: cover;
	}
}
@media screen and (min-width: 1920px) {
	.container {
		width: 100%;
		max-width: 1920px;
		margin: 0 auto;
	}
}
/* COMMON ITEMS*/
/*for hover effects*/
.isHover{
	transition:opacity .3s ease-in-out;
	-webkit-transition:opacity .3s ease-in-out;
	-moz-transition:opacity .3s ease-in-out;
	-ms-transition:opacity .3s ease-in-out;
}
.isHover:hover {
	opacity:.6;
	cursor:pointer;
}
/*style the buttons for hero section and purchase section*/
.button {
	position: relative;
	width: 60%;
	height: 50px;
	border: 1px solid white;
	background-image: -webkit-linear-gradient(#239cda 0%, #687abb 85%, #000 100%);
	background-image: -o-linear-gradient(#239cda 0%, #687abb 85%, #000 100%);
	background-image: linear-gradient(#239cda 0%, #687abb 85%, #000 100%);
	cursor: pointer;
	color: #FFF;
	margin: 0 auto;
}
.button:active {
	background-image: -webkit-linear-gradient(#239cda 15%, #687abb 92%, #000 100%);
	background-image: -o-linear-gradient(#239cda 15%, #687abb 92%, #000 100%);
	background-image: linear-gradient(#239cda 15%, #687abb 92%, #000 100%);
}
.button:before {
	position: absolute;
	width: 103.75%;
	height: 56px;
	content: "";
	z-index: -1;
	top: -4px;
	left: -4px;
	border: 4px solid #000;
}
.button:after {
	position: absolute;
	width: 106.25%;
	height: 62px;
	content: "";
	z-index: -3;
	top: -7px;
	left: -7px;
	border: 7px solid #239cda;
	box-shadow: 4px 4px 25px #000;
}
.button:active:after {
	box-shadow: 2px 2px 15px #000;	
}
.text {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 22px;
	z-index: 1
}
.text:active {
	color: #000;
}
.flourish {
	position: absolute;
	right: 0;
	height: 100%;
}
.flourishRev {
	position: absolute;
	left: 0;
	transform: rotate(180deg);
	height: 100%;
}
@media screen and (min-width: 500px) {
	.button {
		width: 300px;
		height: 55px;
	}
	.button:before {
		width: 306px;
		height: 61px;
	}
	.button:after {
		width: 312px;
		height: 67px;	
	}
}
/* CLOUD IN HERO SECTION*/
.cloud {
	display: block;
	height: 100%;
	width: auto;
	position: fixed;
	bottom: 0;
	left: 0;
	transition: all 0.8s ease-out;
	z-index: 0;
	opacity: 0;
}
@media screen and (min-width: 768px) {
	.cloud {
		display: block;
		max-width: 100%;
		opacity: 0.9;
	}
}
/*HERO SECTION*/
.heroSection {
	position: relative;
    z-index: 1;
}
.hsLargeScreen {
	display: none;
}
.hsSmallScreen {
	display: block;
}
.twoHeros {
	width: 100%;
	position: relative;
	z-index: 1;
}
.gameLogo {
	width: 75%;
	margin: -15% auto 0;
	position: relative;
}
.releaseDate {
	width: 90%;
	margin: 2% auto 0;
	position: relative;
}
.preorderInfo {
	position: absolute;
	top: 10%;
	left: 5%;
	width: 30%;
	margin-bottom: 0;
	z-index: 2;
}
.preorderInfo img {
	width: 100%;
}
.preorderInfo img:first-child {
	margin-bottom: 5%;
}
.preorderButton {
	cursor: pointer;
}
@media screen and (min-width: 550px) {
	.twoHeros {
		width: 90%;
		position: relative;
		left: 25px;
	}
	.gameLogo {
		width: 65%;
		margin: -17% auto 0;
		position: relative;
	}
	.releaseDate {
		width: 80%;
	}
}
@media screen and (min-width: 620px) {
	.twoHeros {
		width: 75%;
		left: 75px;
	}
	.gameLogo {
		width: 55%;
	}
	.releaseDate {
		width: 70%;
	}
}
@media screen and (min-width: 768px) {
	.hsLargeScreen, .showRelease {
		display: block;
	}
	.hsSmallScreen, .hideRelease {
		display: none;
	}
	.heroLeft {
		position: absolute;
		width: 40%;
		top: 25%;
		left: 2%;
		z-index: 2;
	}
	.gameLogo {
		width: 100%;
		max-width: 320px;
	}
	.preorderInfo {
		position: static;
		width: 100%;
		margin-bottom: 3%;
	}
	.preorderInfo > div {
		display: inline-block;
		width: 49%;
	}
	.releaseDate {
		width: 100%;
		margin-bottom: 5%;
	}
	.twoHeros {
		width: 70%;
		left: 110px;
	}
	.button {
		width: 225px;
		height: 45px;
	}
	.button:before {
		width: 231px;
		height: 51px;
	}
	.button:after {
		width: 237px;
		height: 57px;
	}
}
@media screen and (min-width: 1024px) {
	.heroLeft {
		position: relative;
		display: inline-block;
		vertical-align: middle;
		width: 38%;
		margin-left: 2%;
		z-index: 2;
	}
	.twoHeros {
		width: 59%;
		display: inline-block;
		vertical-align: middle;
		left: 0;
	}
}
@media screen and (min-width: 1250px) {
	.showRelease {
		display: none;
	}
	.hideRelease {
		display: block;
	}
	.heroLeft {
		width: 40%;
	}
	.preorderInfo div {
		vertical-align: middle;
	}
	.preorderInfo div:first-child {
		width: 40%;
	}	
	.preorderInfo div:last-child {
		width: 59%;
	}
	.preorderInfo .preorderButton {
		width: 250px;
	}
	.gameLogo {
		width: 80%;
		max-width: 520px;
	}
	.gameBox {
		max-width: 260px;
	}
	.twoHeros {
		width: 55%;
		max-width: 800px;
		position: relative;
   		z-index: 1;
	}
}
/*CLASSES SECTION*/
.classSection {
	position: relative;
}
.classHeader {
	margin: 3% auto -5%;
	width: 45%;
    max-width: 250px;
}
.carouselContainerClass {
	position: relative;
	max-width: 768px;
	margin: 0 auto;
}
.carouselContainerClass .prev, .carouselContainerClass .next {
	background: transparent;
	border: none;
	position: absolute;
	top: 40%;
	z-index: 95;
	cursor: pointer;
}
.carouselContainerClass .prev {
	left: 1%;
}
.carouselContainerClass .next {
	right: 1%;
}
.buttonNotActive {
	opacity: 0.5;
}
.classesSlick {
	position: relative;
	overflow: hidden;
}
.classCharacter {
	margin: 0;
	position: relative;
	right: 6%;
	transition: transform 300ms;
}
.classCharacter img {
	text-align: center;
	padding: 10px;
	height: 600px;
	filter: grayscale(65%);
}
.activeClass {
	right: 9%;
}
.activeClass img {
	filter: none!important;
}
.classBox {
	position: absolute;
	bottom: 0;
}
.classTitle {
	display: block;
    margin-left: 10%;
	height: 110px;
}
.classText { 
	line-height: 1.75;
	color: white;
	font-weight: 600;
	text-shadow: 0px 0px 5px rgb(32,85,128), 0px 0px 10px rgb(32,85,128), 0px 0px 18px rgb(32,85,128), 0px 0px 25px rgb(32,85,128);
	font-size: 15px;
}
.textBox {    
	background-image: url(../img/common/blue_box_bg.png);
    background-size: 100%;
    background-repeat: repeat-y;
    width: 90%;
    display: block;
    text-align: left;
    list-style: none;
    position: relative;
    margin: auto;
    padding: 2% 7%;

}
@media screen and (min-width: 400px) {

	.activeClass {
		right: 7%;
	}
}
@media screen and (min-width: 768px) {
	.carouselContainerClass {
		max-width: 1024px;
	}	
	.classCharacter  {
		right: 2%;
	}
	.classCharacter img {
		height: 700px;
	}
	.activeClass {
		right: 3%;
	}
	.classBox {
		position: absolute;
		top: 50%;
		left: 10%;
		width: 400px;
	}	
	.textBox {
		height: 190px;
	}
}
@media screen and (min-width: 1024px) {
	.carouselContainerClass {
		max-width: 1920px;
	}	
	.classCharacter  {
		left: -6%;
		right: 0;
	}
	.activeClass {
		left: -6%;
		right: 0;
	}
}
@media screen and (min-width: 1400px) {
	.carouselContainerClass {
		max-width: 1400px;
	}	
	.classCharacter  {
		left: -6%;
		right: 0;
	}
	.activeClass {
		left: -6%;
		right: 0;
	}
	.classBox {
		left: 13%;
	}
}
@media screen and (min-width: 1700px) {
	.classBox {
		left: 18%;
	}
}
@media screen and (min-width: 1920px) {
	.classText {
		font-size: 17px;
	}
}
.characterSection {
	margin-top: 5%;
	overflow: hidden;
}
.characterHeader {
	width: 65%;
	margin: 3% auto 5%;
	max-width: 395px;
	position: relative;
	z-index: 1;
}
/*CHARACTER SECTION*/
/*FOR LARGE CHARACTER BOXES UNDER CAROUSEL BELOW*/
.visibleLargeOnly {
	display: none;
}
.visibleSmallOnly {
	display: block;
}
.characterBox {
    background-image: url(../img/character/bg_vivian.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: top center;
    width: 100%;
    position: relative;
	text-align: left;
	padding-bottom: 5%;
	margin-top: 5%;
}
.characterTitleAndName {
	padding-top: 15%;
    margin: 0 0 3% 10px;
    z-index: 1;
    position: relative;
}
.titleOfCharacter {
	height: 35px;
	display: block;
}
.nameOfCharacter {
	height: 50px;
}
.characterScreenShot {
    height: 100px;
    margin-left: 10px;
    position: relative;
    z-index: 1;
}
.largeCharacterImage {
    position: absolute;
    right: -37%;
    top: 0;
    width: auto;
    height: 48%;
}
.characterTextBox {    
	background-image: url(../img/common/blue_box_bg.png);
    background-size: 100%;
    background-repeat: repeat-y;
    width: 90%;
    display: block;
    text-align: left;
    list-style: none;
    position: relative;
    margin: 20% auto 0;
    padding: 2% 7%;
}
.characterBox .prev, .characterBox .next {
	background: transparent;
	border: none;
	position: absolute;
	top: 0;
	z-index: 95;
	cursor: pointer;
}
.characterBox .prev {
	left: 0;
}
.characterBox .next {
	right: 0;
}
.characterBox .prev img,
.characterBox .next img {
	right: 1%;
	height: 60px
}
/*additional characters*/
/*napier*/
#napier {
    background-image: url(../img/character/bg_napier.png);
}
#napier .largeCharacterImage {
	right: 0;
}
/*persephone*/
#persephone {
    background-image: url(../img/character/bg_persephone.png);
}
#persephone .largeCharacterImage {
	right: -27%;
	top: 3%;
}
/*kvasir*/
#kvasir {
    background-image: url(../img/character/bg_kavsir.png);
}
#kvasir .largeCharacterImage {
	right: -15%;
	top: 5%;
}
/*mueller*/
#mueller {
    background-image: url(../img/character/bg_mueller.png);
}
#mueller .largeCharacterImage {
	right: -19%;
	top: 5%;
}
@media screen and (min-width: 340px) {
	.largeCharacterImage {
		height: 55%;
	}
}
@media screen and (min-width: 400px) {
	#persephone .largeCharacterImage {
		right: -3%;
	}
	#kvasir .largeCharacterImage {
		right: 0%;
	}
	#mueller .largeCharacterImage {
		right: -10%;
	}
}
@media screen and (min-width: 450px) {
	.largeCharacterImage {
		height: 58%;
		position: absolute;
		right: -17%;
		top: -3%;
		width: auto;
	}
	.characterScreenShot {
		height: 100px;
		left: 75px;
		position: relative;
		z-index: 1;
		top: 80px;
	}
	.characterTitleAndName {
		margin: 0 0 0 10px;
		left: 15px;
	}
}
@media screen and (min-width: 550px) {
	.largeCharacterImage {
		right: -3%;
	}
	.characterScreenShot {
		height: 130px;
		top: 90px;
	}
	.characterTitleAndName {
		left: 75px;
	}
	/*napier*/
	#napier .characterScreenShot {
		top: 30px;
	}
	#napier .characterTextBox {
  		margin: 10% auto 0;
	}
	/*persephone*/
	#persephone .characterScreenShot {
		top: 30px;
	}
	#persephone .characterTextBox {
  		margin: 10% auto 0;
	}
	/*kvasir*/
	#kvasir .characterScreenShot {
		top: 30px;
	}
	#kvasir .characterTextBox {
  		margin: 10% auto 0;
	}
	/*Mueller*/
	#mueller .characterScreenShot {
		top: 30px;
	}
	#mueller .characterTextBox {
  		margin: 10% auto 0;
	}
	#mueller .largeCharacterImage {
		right: 0;
	}
}
@media screen and (min-width: 640px) {
	.characterTextBox {
		margin: 17% auto 0;
	}
	.largeCharacterImage {
		max-width: 550px;
	}
	/*napier*/
	#napier .largeCharacterImage {
		right: 10%;
	}
	/*persephone*/
	#persephone .largeCharacterImage {
		right: 5%;
	}
	/*kvasir*/
	#kvasir .largeCharacterImage {
		right: 5%;
	}
	/*mueller*/
	#mueller .largeCharacterImage {
		right: 5%;
	}
}
@media screen and (min-width: 768px) {
	.characterTextBox {
		margin: 14% auto 0;
	}
	.largeCharacterImage {
		right: 0;
		top: 2%;
	}
	.characterScreenShot {
		height: 170px;
	}
	.characterBox .prev, .characterBox .next {
		top: 40%;
	}
	.characterBox .prev img, .characterBox .next img {
		height: initial;
	}
	.characterHeader {
		margin: 0 auto 3%;
	}
	.characterSection {
		margin-top: 0;
	}
	/*napier*/
	#napier .characterTextBox {
  		margin: 5% auto 0;
	}	
	#napier .largeCharacterImage {
		right: 15%;
		top: 0;
	}
	/*persephone*/
	#persephone .characterTextBox {
  		margin: 5% auto 0;
	}
	#persephone .largeCharacterImage {
		right: 10%;
		top: 1%;
	}
	/*kvasir*/	
	#kvasir .characterTextBox {
  		margin: 5% auto 0;
	}
	#kvasir .largeCharacterImage {
		right: 10%;
	}
	/*mueller*/	
	#mueller .characterTextBox {
  		margin: 5% auto 0;
	}
	#mueller .largeCharacterImage {
		right: 10%;
	}
}
@media screen and (min-width: 900px) {
	.visibleLargeOnly {
		display: block;
	}
	.visibleSmallOnly {
		display: none;
	}
	.characterBox {
		margin-top: 0; 
		padding-bottom: 2%;
	}
	.largeCharacterImage {
		right: 0;
		top: initial;
		bottom: 0;
	}	
	.characterTitleAndName {
		padding-top: 5%;
	}
	.characterTitleAndName, .characterScreenShot {
		position: initial;
		display: inline-block;
		vertical-align: bottom;
		padding-top: 3%;
	}
	.characterTitleAndName {
		margin: 0 2% 0 11%;
	}
	.characterTextBox {
		margin: 3% 0 0 7%;
		width: 50%;
		padding: 2% 4%;
	}
	.largeCharacterImage {
    	height: 85%;
	}
/*	napier */
	#napier .characterScreenShot {
		position: absolute;
		right: 67%;
		bottom: 4%;
		top: initial;
		left: initial;
	}	
	#napier .largeCharacterImage {
		right: 45%;
		bottom: 0;
		top: initial;
	}
	#napier .characterTextBox {
		width: 40%;
		left: 22%;
	}
	#napier .characterTitleAndName {
		position: relative;
		left: 45%;
	}
/*	persephone */
	#persephone .characterScreenShot {
		position: absolute;
		right: 25%;
		bottom: 4%;
		top: initial;
		left: initial;
	}	
	#persephone .largeCharacterImage {
		right: 5%;
		bottom: 0;
		top: initial;
	}
	#persephone .characterTextBox {
		width: 40%;
		left: -22%;
	}
	#persephone .characterTitleAndName {
		position: relative;
		left: 0;
	}
/*	kvasir */
	#kvasir .characterScreenShot {
		position: absolute;
		right: 5%;
		bottom: 4%;
		top: initial;
		left: initial;
	}	
	#kvasir .largeCharacterImage {
		right: 20%;
		bottom: 0;
		top: initial;
	}
	#kvasir .characterTextBox {
		width: 40%;
		left: -22%;
	}
	#kvasir .characterTitleAndName {
		position: relative;
		left: 0;
	}	
/*	mueller */
	#mueller .characterScreenShot {
		position: absolute;
		right: 67%;
		bottom: 4%;
		top: initial;
		left: initial;
	}	
	#mueller .largeCharacterImage {
		right: 45%;
		bottom: 0;
		top: initial;
	}
	#mueller .characterTextBox {
		width: 40%;
		left: 22%;
	}
	#mueller .characterTitleAndName {
		position: relative;
		left: 45%;
	}
}
@media screen and (min-width: 1024px) {
	.containerForCharacters {
		width: 90%;
		margin: 0 auto;
		position: relative;
	}
	.largeCharacterImage {
		right: 5%;
	}	
/*	kvasir */
	#kvasir .largeCharacterImage {
		right: 25%;
	}
}
@media screen and (min-width: 1250px) {
	.nameOfCharacter {
		height: 60px;
	}	
	.titleOfCharacter {
		height: 55px;
	}
	.largeCharacterImage {
		right: 10%;
	}
	.characterBox {
		background-size: 100% auto;
	}
/*	napier */
	#napier .largeCharacterImage {
		right: 53%;
	}
	#napier .characterTextBox {
		width: 50%;
		left: 19%;
	}
	#napier .characterTitleAndName {
		left: 37%;
	}
/*	persephone */
	#persephone .largeCharacterImage {
		right: 10%;
	}
	#persephone .characterTextBox {
		width: 45%;
		left: -20%;
	}
/*	mueller */
	#mueller .largeCharacterImage {
		right: 53%;
	}
	#mueller .characterTextBox {
		width: 50%;
		left: 19%;
	}
	#mueller .characterTitleAndName {
		left: 37%;
	}
	#mueller .characterScreenShot {
		right: 72%;
	}
}
@media screen and (min-width: 1400px) {
	.characterScreenShot {
		height: 200px;
	}	
	.characterTextBox {
		width: 40%;
	}
/*	napier */
	#napier .characterTextBox {
		width: 40%;
		left: 19%;
	}
	#napier .characterTitleAndName {
		left: 42%;
	}
/*	mueller */
	#mueller .characterTextBox {
		width: 40%;
		left: 19%;
	}
	#mueller .characterTitleAndName {
		left: 42%;
	}
}
@media screen and (min-width: 1700px) {
	.largeCharacterImage {
		height: 100%;
		max-width: 650px;
	}	
	/*	persephone */
	#persephone .largeCharacterImage {
		right: 15%;
	}	
	#persephone .characterScreenShot {
		right: 31%;
	}
	/*	kvasir */
	#kvasir .characterScreenShot {
		right: 8%;
	}		
	/*	mueller */
	#mueller .characterScreenShot {
		right: 78%;
	}
}
/*END OF LARGE CHARACTERS AREA*/
/*CHARACTER MINI CAROUSEL AREA*/
.thumbnailContainer {
	width: 100%;
	height: 60px;
	margin: 2% auto 0;
	position: relative;
}
.thumbnailSlider {
	width: 80%;	
    margin: 0 auto;
}
.characterThumbnail {
	height: 55px;
	margin: 0 auto;
	outline: none;
}
.characterThumbnail img {
	height: 100%;
	margin: 0 auto;
	opacity: 0.7;
	cursor: pointer;
}
.characterThumbnail img:hover {
	opacity: 1;
}
.thumbnailContainer button {
	background: transparent;
	border: none;
}
.thumbnailContainer button img {
	height: 60px;
}
.thumbnailContainer .prev {
	position: absolute;
	left: -2%;
	top: calc(50% - 30px);
}
.thumbnailContainer .next {
	position: absolute;
	right: -2%;
	top: calc(50% - 30px);
}
.characterThumbnail .thumbnailActive {
	border: 4px solid #2150b9;
	opacity: 1;
}
@media screen and (min-width: 640px) {
	.thumbnailContainer {
		width: 90%;
		height: 75px;
	}
	.thumbnailSlider {
		width: 90%;
	}
	.characterThumbnail {
		height: 75px;
	}
}
@media screen and (min-width: 1024px) {
	.thumbnailContainer {
		width: 90%;
		max-width: 1024px;
		height: 75px;
	}
}
/*CHARACTER MINI CAROUSEL AREA END*/
/*SYSTEM SECTION BEGIN*/

.systemSection {
	overflow: hidden;
}
.buttonGroup {
	width: 90%;
	margin: 10% auto 0;
	max-width: 700px;
}
.buttonGroup img {
	display: inline-block;
	width: 45%;
	margin-right: 10px;
	max-width: 182px;
	opacity: .75;
	cursor: pointer;
}
.systemActive {
	opacity: 1!important;
}
.buttonGroup img:hover {
	opacity: 1;
}
.systemTitleBanner {
	width: 95%;
	height: 77px;
	text-align: center;
	position: relative;
	margin: 0 auto;
	max-width: 764px;
}
.systemHeaderText {
	font-size: 16px;	
	text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0px 0px 5px rgb(0,0,0), 0px 0px 10px rgb(0,0,0), 0px 0px 18px rgb(0,0,0), 0px 0px 25px rgb(0,0,0);; 
	color: white;
	font-weight: 500;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -55%);
	z-index: 1;
	text-transform: uppercase;
	width: 100%;
}
.systemTitleBanner img {
	position: absolute;
	height: auto;
	max-height: 77px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}
.abTitle {
	height: 40px;
	margin: 0 auto;
	display: block;
}
.scTitle {
	height: 50px;
	margin: 0 auto;
	display: block;
}
#battleHeader {
	height: 33px;
	margin: 3.5px auto -3.5px;
}
.systemImageGroup {
	width: 90%;
	margin: 0 auto;
	position: relative;
}
.systemImageGroup a img {
	width: 56%;	
}
.systemImageGroup .imageToRight {
	position: relative;
	left: 22%;
	top: 10px;
}
.systemImageGroup .imageToLeft {
	position: relative;
	right: 22%;
	bottom: 10px;
	z-index: 1;
}
#smallerImage {
	position: absolute;
	left: 0;	
}
.systemTextBox {    
	background-image: url(../img/common/blue_box_bg.png);
    background-size: 100%;
    background-repeat: repeat-y;
    width: 90%;
    display: block;
    text-align: left;
    list-style: none;
    position: relative;
    margin: 6% auto 3%;
    padding: 2% 7%;
}
.btnSectionTop {
	max-width: 271px;
	width: 70%;
	margin: 0 auto;
	display: block;
}
@media screen and (min-width: 414px) {
	.abTitle {
		height: 50px;
	}
	.scTitle {
		height: 72px
	}
	#battleHeader {
		height: 43px;
	}
	.systemHeaderText {
		font-size: 20px;
	}
}
@media screen and (min-width: 640px) {
	.buttonGroup img {
		width: 30%;
	}
	.systemHeaderText {
		font-size: 25px;
	}
	.abGroup {
		max-width: 640px;
		margin: 0 auto;
		display: inline-block;
	}
	.scTitle {
		height: 105px;
	}
	.systemImageGroup {
		width: 50%;
		display: inline-block;
		margin-right: 4%;
		left: 45%;
		vertical-align: middle;
	}
	.systemTextBox {
		padding: 2% 4%;
		display: inline-block;
		width: 40%;
		margin-left: 4%;
		right: 55%;
		vertical-align: middle;
	}
	.systemImageGroup a img {
		width: 66%;
	}
	.systemImageGroup .imageToRight {
		left: 17%;
	}
	.systemImageGroup .imageToLeft {
		right: 17%;
	}
	.btnSectionTop {
		margin-top: 5%;
	}	
	#smallerImage {
		width: 55%;
	}	
}
@media screen and (min-width: 900px) {
	.buttonGroup {
		margin: 8% auto 3%;
	}
}
@media screen and (min-width: 1250px) {
	.buttonGroup {
		max-width: 1200px;
	}
}
@media screen and (min-width: 1400px) {
	.abGroup {
		max-width: 750px;
	}
}
/*PURCHASE SECTION*/
.purchaseSection {
	overflow: hidden;
}
.glamShot {
	width: 95%;
	margin: 0 auto;
	max-width: 1200px;
}
.preorderHeader {
	margin: 3% auto;
    width: 90%;
    max-width: 510px;
	display: block;
}
.purchaseBtn {
	text-align: center;
	margin: 3% auto 0;
	z-index: 1;
	padding: .5em;
	width: 100%;
	height: 50px;
	position: relative;
	background-image: -webkit-linear-gradient(#239cda 0%, #687abb 85%, #000 100%);
	background-image: -o-linear-gradient(#239cda 0%, #687abb 85%, #000 100%);
	background-image: linear-gradient(#239cda 0%, #687abb 85%, #000 100%);
	color: white;
	cursor: pointer;
}
.purchaseBtn:hover {
	color: black;
}
.dropdownMenu {
	text-align: center;
	width: 100%;
	min-height: 50px;
	display: none;
}
.dropdownMenu li {
	background-image: -webkit-linear-gradient(#239cda 0%, #687abb 85%, #000 100%);
	background-image: -o-linear-gradient(#239cda 0%, #687abb 85%, #000 100%);
	background-image: linear-gradient(#239cda 0%, #687abb 85%, #000 100%);
	width: 100%;
	height: 36px;
	position: relative;
	margin: none !important;
}
.dropdownMenu ul {
	margin: none !important;
}
.dropdownMenu li a {
	list-style: none;
    color: white;
    width: 100%;
    height: 36px;
    display: block;
}
.dropdownMenu li a:hover {
    color: black;
}
.purchaseText {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 18px;
}
.purchaseSmall{
	display: block;
}
.purchaseLarge {
	display: none;
}
.purchaseButtons {
	width: 90%;
	margin: 3% auto;
	max-width: 1200px;
}
.purchaseButtons div {
	display: inline-block;
	margin: 10px; 
}
.purchaseButtons .text {
	transform: translate(-50%, -57%);
}
@media screen and (min-width: 640px) {
	.dropdownMenu li {
		height: 42px;
	}
	.dropdownMenu li a {
		height: 42px;
	}
}

@media screen and (min-width: 768px) {
	.purchaseSmall{
		display: none;
	}
	.purchaseLarge {
		display: block;
	}
}
/*FOOTER*/
footer {
	background-color: #FFF;
	width: 100%;
	margin: 3% auto 0;
	padding-bottom: 1%;
	height: auto;
}
.socialicons {
	width: 100%;
	margin: 0 auto;
}
.socialicons img {
	height: 60px;
    width: auto;
    margin: 2% 5px;
}
.logos {
	width: 90%;
	margin: 0 auto;
}
.logos img {
	display: inline-block;
	margin: 10px 2% 0;
	height: auto;
}
.esrbLogo {
	width: 180px;
}
.atlusLogo {
	width: 170px;
}
.threeDS {
	width: 90%;
	max-width: 319px;
}
.copyright {   
	width: 100%;   
	margin: 20px auto 1%;    
	text-align: center;    
	font-family: Helvetica, Arial, "sans-serif";    
	font-size: 12px;    
	font-weight: bold;
}
.privacy {    
	width: 56%;    
	margin: 0 auto 4%;    
	font-family: Helvetica, Arial, "sans-serif";    
	font-size: 12px;    
	font-weight: bold;
	color: #000;
	text-decoration: none;
}
.privacy a {
	color: #000;
	text-decoration: none;
}
.privacy .line {
	margin: 1%;
    border: 0;
    height: 2px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(32, 85, 128, 1.0), rgba(0, 0, 0, 0));
}
.cookie {
	margin-left: 25px;
}