/* 	================================================

	12 COLUMN GRID
	- 980px grid
	- 56px columns (5.71428572%)
	- 14px margins (1.42857143%) = 28px gutter (2.85714286%)
	- first col has no left gutter, last col has no right gutter
	- .no-margin class switches gutter from margin to padding
	- .wrapper.gutter adds padding on left/right when content is within a colored container (WiiU/3DS pages)
	- width: ( 100 - ( NUM_GUTTERS * GUTTER_WIDTH ) ) / NUM_COLUMNS;

	================================================ */

/*	-----------------------------------
	Common
	----------------------------------- */
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	    	box-sizing: border-box;
}

img {
	height: auto;
	max-width: 100%;
	min-width: 0;
	outline: none;
	width: auto;
}

/* responsive video */
.video-player {
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
}

.poster-player,
.poster-player * {
	pointer-events: none;
}

.video-player iframe,
.video-player object,
.video-player embed,
.video-player > div,
.video-player video {
	height: 100% !important;
	left: 0;
	position: absolute;
	top: 0;
	width: 100% !important;
}


/*	-----------------------------------
	Grid Layout
	----------------------------------- */
.wrapper {
	margin-left: auto;
	margin-right: auto;
	max-width: 980px;
	min-width: 960px;
	width: 980px;
}

header .wrapper {
	max-width: 1440px;
	width: 96%;
}

.wrapper.gutter {
	padding-left: 20px;
	padding-right: 20px;
	-webkit-box-sizing: content-box;
	   -moz-box-sizing: content-box;
			box-sizing: content-box;
}

.row {
	display: block;
	list-style: none outside none;
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
}
.row:after {
	clear: both;
	content: "";
	display: block;
	height: 0;
	visibility: hidden;
}


.row .column,
.row > li {
	float: left;
	margin-left: 1.42857143%;
	margin-right: 1.42857143%;
	position: relative;
	width: 5.71428572%;
}
.no-margin .column,
.no-margin > li {
	margin-left: 0;
	margin-right: 0;
	padding-left: 1.42857143%;
	padding-right: 1.42857143%;
	-webkit-box-sizing: content-box;
	   -moz-box-sizing: content-box;
			box-sizing: content-box;
}


/* Remove margins by default on every 12th column */
.row > li:nth-child(12n+12),
.row > .column:nth-child(12n+12) { margin-right: 0; }
.row > li:nth-child(12n+1),
.row > .column:nth-child(12n+1) { margin-left: 0; }

.no-margin > li:nth-child(12n+12),
.no-margin > .column:nth-child(12n+12) { padding-right: 0; }
.no-margin > li:nth-child(12n+1),
.no-margin > .column:nth-child(12n+1) { padding-left: 0; }

/* Set uniform column widths */
.row-11cols > li,
.row-11cols > .column { width:6.4935065%; }

.row-10cols > li,
.row-10cols > .column { width:7.4285714%; }

.row-9cols > li,
.row-9cols > .column { width:8.57142857%; }

.row-8cols > li,
.row-8cols > .column { width:9.99999999%; }

.row-7cols > li,
.row-7cols > .column { width:11.8367346%; }

.row-6cols > li,
.row-6cols > .column { width:14.2857143%; }

.row-5cols > li,
.row-5cols > .column { width:17.714285712%; }

.row-4cols > li,
.row-4cols > .column { width:22.85714286%; }

.row-3cols > li,
.row-3cols > .column { width:31.42857143%; }

.row-2cols > li,
.row-2cols > .column { width:48.57142857%; }

.row-1cols > li,
.row-1cols > .column {
	margin-left: 0;
	margin-right: 0;
	width: 100%;
}

/* Remove Margin/Padding on First/Last columns */
.row .column:first-child,
.row li:first-child { margin-left: 0; }

.row .column:last-child,
.row li:last-child { margin-right: 0; }

.row.no-margin .column:first-child,
.row.no-margin li:first-child { padding-left: 0; }

.row.no-margin .column:last-child,
.row.no-margin li:last-child { padding-right: 0; }

.colum .center {
	margin: 0 auto;
	text-align: center;
}

/* Custom column widths */
.row .col11 { width: 91.42857143%; }
.row .col10 { width: 82.85714286%; }
.row .col9 { width: 74.28571429%; }
.row .col8 { width: 65.71428571%; }
.row .col7 { width: 57.14285714%; }
.row .col6 { width: 48.57142857%; }
.row .col5 { width: 40%; }
.row .col4 { width: 31.42857143%; }
.row .col3 { width: 22.85714286%; }
.row .col2 { width: 14.2857143%; }
/*.col1 {	width: 5.71428572%; }*/

/* 	================================================

	RESPONSIVE BASE

	================================================ */
@media screen and (max-width: 980px) {
	.wrapper {
		max-width: 96%;
		min-width: 0px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
			    box-sizing: border-box;
	}
	.wrapper.gutter {
		padding-left: 2%;
		padding-right: 2%;
		-webkit-box-sizing: content-box;
		   -moz-box-sizing: content-box;
			    box-sizing: content-box;
	}

	
}
@media screen and (min-width: 769px) and (max-width: 900px) {
	/* Custom column widths */
	.row .col12-dtab { width: 100%; float: none; clear: both; margin-left: 0; margin-right: 0; }
	.row .col11-dtab { width: 91.42857143%; }
	.row .col10-dtab { width: 82.85714286%; }
	.row .col9-dtab { width: 74.28571429%; }
	.row .col8-dtab { width: 65.71428571%; }
	.row .col7-dtab { width: 57.14285714%; }
	.row .col6-dtab { width: 48.57142857%; }
	.row .col5-dtab { width: 40%; }
	.row .col4-dtab { width: 31.42857143%; }
	.row .col3-dtab { width: 22.85714286%; }
	.row .col2-dtab { width: 14.2857143%; }
	.row .col1-dtab { width: 5.71428572%; }
}
/* 	================================================

	DESKTOP VIEW

	================================================ */
@media screen and (min-width: 769px) {

	/* Full Column Width */
	.row .col12 {
		clear: both;
		float: none;
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}

	/* Remove margin/padding on first last columns in even width rows */
	.row-1cols.no-margin > li
	.row-1cols.no-margin > .column {
		padding-left: 0;
		padding-right: 0;
	}

	.row-2cols > li:nth-child(odd),
	.row-2cols > .column:nth-child(odd),
	.row-3cols > li:nth-child(3n+1),
	.row-3cols > .column:nth-child(3n+1),
	.row-4cols > li:nth-child(4n+1),
	.row-4cols > .column:nth-child(4n+1),
	.row-5cols > li:nth-child(5n+1),
	.row-5cols > .column:nth-child(5n+1),
	.row-6cols > li:nth-child(6n+1),
	.row-6cols > .column:nth-child(6n+1),
	.row-7cols > li:nth-child(7n+1),
	.row-7cols > .column:nth-child(7n+1),
	.row-8cols > li:nth-child(8n+1),
	.row-8cols > .column:nth-child(8n+1),
	.row-9cols > li:nth-child(9n+1),
	.row-9cols > .column:nth-child(9n+1),
	.row-10cols > li:nth-child(10n+1),
	.row-10cols > .column:nth-child(10n+1),
	.row-11cols > li:nth-child(11n+1),
	.row-11cols > .column:nth-child(11n+1),
	.row-12cols > li:nth-child(12n+1),
	.row-12cols > .column:nth-child(12n+1) {
		clear: both;
		margin-left: 0;
	}

	.row-2cols > li:nth-child(even),
	.row-2cols > .column:nth-child(even),
	.row-3cols > li:nth-child(3n+3),
	.row-3cols > .column:nth-child(3n+3),
	.row-4cols > li:nth-child(4n+4),
	.row-4cols > .column:nth-child(4n+4),
	.row-5cols > li:nth-child(5n+5),
	.row-5cols > .column:nth-child(5n+5),
	.row-6cols > li:nth-child(6n+6),
	.row-6cols > .column:nth-child(6n+6),
	.row-7cols > li:nth-child(7n+7),
	.row-7cols > .column:nth-child(7n+7),
	.row-8cols > li:nth-child(8n+8),
	.row-8cols > .column:nth-child(8n+8),
	.row-9cols > li:nth-child(9n+9),
	.row-9cols > .column:nth-child(9n+9),
	.row-10cols > li:nth-child(10n+10),
	.row-10cols > .column:nth-child(10n+10),
	.row-11cols > li:nth-child(11n+11),
	.row-11cols > .column:nth-child(11n+11),
	.row-12cols > li:nth-child(12n+12),
	.row-12cols > .column:nth-child(12n+12) {
		margin-right: 0;
	}

	.row-2cols.no-margin > li:nth-child(odd),
	.row-2cols.no-margin > .column:nth-child(odd),
	.row-3cols.no-margin > li:nth-child(3n+1),
	.row-3cols.no-margin > .column:nth-child(3n+1),
	.row-4cols.no-margin > li:nth-child(4n+1),
	.row-4cols.no-margin > .column:nth-child(4n+1),
	.row-5cols.no-margin > li:nth-child(5n+1),
	.row-5cols.no-margin > .column:nth-child(5n+1),
	.row-6cols.no-margin > li:nth-child(6n+1),
	.row-6cols.no-margin > .column:nth-child(6n+1),
	.row-7cols.no-margin > li:nth-child(7n+1),
	.row-7cols.no-margin > .column:nth-child(7n+1),
	.row-8cols.no-margin > li:nth-child(8n+1),
	.row-8cols.no-margin > .column:nth-child(8n+1),
	.row-9cols.no-margin > li:nth-child(9n+1),
	.row-9cols.no-margin > .column:nth-child(9n+1),
	.row-10cols.no-margin > li:nth-child(10n+1),
	.row-10cols.no-margin > .column:nth-child(10n+1),
	.row-11cols.no-margin > li:nth-child(11n+1),
	.row-11cols.no-margin > .column:nth-child(11n+1),
	.row-12cols.no-margin > li:nth-child(12n+1),
	.row-12cols.no-margin > .column:nth-child(12n+1) {
		padding-left: 0;
	}

	.row-2cols.no-margin > li:nth-child(even),
	.row-2cols.no-margin > .column:nth-child(even),
	.row-3cols.no-margin > li:nth-child(3n+3),
	.row-3cols.no-margin > .column:nth-child(3n+3),
	.row-4cols.no-margin > li:nth-child(4n+4),
	.row-4cols.no-margin > .column:nth-child(4n+4),
	.row-5cols.no-margin > li:nth-child(5n+5),
	.row-5cols.no-margin > .column:nth-child(5n+5),
	.row-6cols.no-margin > li:nth-child(6n+6),
	.row-6cols.no-margin > .column:nth-child(6n+6),
	.row-7cols.no-margin > li:nth-child(7n+7),
	.row-7cols.no-margin > .column:nth-child(7n+7),
	.row-8cols.no-margin > li:nth-child(8n+8),
	.row-8cols.no-margin > .column:nth-child(8n+8),
	.row-9cols.no-margin > li:nth-child(9n+9),
	.row-9cols.no-margin > .column:nth-child(9n+9),
	.row-10cols.no-margin > li:nth-child(10n+10),
	.row-10cols.no-margin > .column:nth-child(10n+10),
	.row-11cols.no-margin > li:nth-child(11n+11),
	.row-11cols.no-margin > .column:nth-child(11n+11),
	.row-12cols.no-margin > li:nth-child(12n+11),
	.row-12cols.no-margin > .column:nth-child(12n+12) {
		padding-right: 0;
	}

	/* Push Full Column/Gutter Width */
	.row .column.push11,
	.row li.push11 { left: 94.2857137%; }
	.row .column.push10,
	.row li.push10 { left: 85.7142852%; }
	.row .column.push9,
	.row li.push9 {	left: 77.1428567%; }
	.row .column.push8,
	.row li.push8 {	left: 68.5714282%; }
	.row .column.push7,
	.row li.push7 {	left: 59.9999999%; }
	.row .column.push6,
	.row li.push6 {	left: 51.4285711%; }
	.row .column.push5,
	.row li.push5 {	left: 42.8571426%; }
	.row .column.push4,
	.row li.push4 {	left: 34.2857141%; }
	.row .column.push3,
	.row li.push3 {	left: 25.7142856%; }
	.row .column.push2,
	.row li.push2 {	left: 17.1428571%; }
	.row .column.push1,
	.row li.push1 {	left: 8.57142857%; }

	/* Push Column Width only. No Gutter */
	.row .column.pushcol,
	.row li.pushcol { left: 5.71428572%; }

	/* Push Gutter Width only. No Column */
	.row .column.pushmargin,
	.row li.pushmargin { left: 2.85714286%; }

	/* Pull Full Column/Gutter Width */
	.row .column.pull11,
	.row li.pull11 { left: -94.2857137%; }
	.row .column.pull10,
	.row li.pull10 { left: -85.7142852%; }
	.row .column.pull9,
	.row li.pull9 {	left: -77.1428567%; }
	.row .column.pull8,
	.row li.pull8 {	left: -68.5714282%; }
	.row .column.pull7,
	.row li.pull7 {	left: -59.9999999%; }
	.row .column.pull6,
	.row li.pull6 {	left: -51.4285711%; }
	.row .column.pull5,
	.row li.pull5 {	left: -42.8571426%; }
	.row .column.pull4,
	.row li.pull4 {	left: -34.2857141%; }
	.row .column.pull3,
	.row li.pull3 {	left: -25.7142856%; }
	.row .column.pull2,
	.row li.pull2 {	left: -17.1428571%; }
	.row .column.pull1,
	.row li.pull1 {	left: -8.57142857%; }

	/* Pull Column Width only. No Gutter */
	.row .column.pullcol,
	.row li.pullcol { left: -5.71428572%; }

	/* Pull Gutter Width only. No Column */
	.row .column.pullmargin,
	.row li.pullmargin { left: -2.85714286%; }

	.hide {
		display: none !important;
	}

	.hide-desktop {
		display: none !important;
	}

}


/* 	================================================

	TABLET VIEW

	================================================ */
@media screen and (min-width: 571px) and (max-width: 768px) {

	/* Custom column widths */
	.row .col12-tab { width: 100%; float: none; clear: both; margin-left: 0; margin-right: 0; }
	.row .col11-tab { width: 91.42857143%; }
	.row .col10-tab { width: 82.85714286%; }
	.row .col9-tab { width: 74.28571429%; }
	.row .col8-tab { width: 65.71428571%; }
	.row .col7-tab { width: 57.14285714%; }
	.row .col6-tab { width: 48.57142857%; }
	.row .col5-tab { width: 40%; }
	.row .col4-tab { width: 31.42857143%; }
	.row .col3-tab { width: 22.85714286%; }
	.row .col2-tab { width: 14.2857143%; }
	.row .col1-tab { width: 5.71428572%; }

	.row-1cols-tab > li,
	.row-1cols-tab > .column {
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}
	.row-1cols-tab.no-margin > li
	.row-1cols-tab.no-margin > .column {
		padding-left: 0;
		padding-right: 0;
	}

	/* Set widths for tablet classes */
	.row-2cols-tab > li,
	.row-2cols-tab > .column { width:48.57142857%; }
	.row-3cols-tab > li,
	.row-3cols-tab > .column { width:31.42857143%; }
	.row-4cols-tab > li,
	.row-4cols-tab > .column { width:22.85714286%; }
	.row-5cols-tab > li,
	.row-5cols-tab > .column { width:17.714285712%; }
	.row-6cols-tab > li,
	.row-6cols-tab > .column { width:14.2857143%; }
	.row-7cols-tab > li,
	.row-7cols-tab > .column { width:11.8367346%; }
	.row-8cols-tab > li,
	.row-8cols-tab > .column { width:9.99999999%; }
	.row-9cols-tab > li,
	.row-9cols-tab > .column { width:8.57142857%; }
	.row-10cols-tab > li,
	.row-10cols-tab > .column { width:7.4285714%; }
	.row-11cols-tab > li,
	.row-11cols-tab > .column { width:6.4935065%; }
	.row-12cols-tab > li,
	.row-12cols-tab > .column { width: 5.71428572%; }


	/* Remove margin/padding on first last columns in even width rows */
	.row-2cols-tab > li:nth-child(odd),
	.row-2cols-tab > .column:nth-child(odd),
	.row-3cols-tab > li:nth-child(3n+1),
	.row-3cols-tab > .column:nth-child(3n+1),
	.row-4cols-tab > li:nth-child(4n+1),
	.row-4cols-tab > .column:nth-child(4n+1),
	.row-5cols-tab > li:nth-child(5n+1),
	.row-5cols-tab > .column:nth-child(5n+1),
	.row-6cols-tab > li:nth-child(6n+1),
	.row-6cols-tab > .column:nth-child(6n+1),
	.row-7cols-tab > li:nth-child(7n+1),
	.row-7cols-tab > .column:nth-child(7n+1),
	.row-8cols-tab > li:nth-child(8n+1),
	.row-8cols-tab > .column:nth-child(8n+1),
	.row-9cols-tab > li:nth-child(9n+1),
	.row-9cols-tab > .column:nth-child(9n+1),
	.row-10cols-tab > li:nth-child(10n+1),
	.row-10cols-tab > .column:nth-child(10n+1),
	.row-11cols-tab > li:nth-child(11n+1),
	.row-11cols-tab > .column:nth-child(11n+1),
	.row-12cols-tab > li:nth-child(12n+1),
	.row-12cols-tab > .column:nth-child(12n+1) {
		clear: both;
		margin-left: 0;
	}

	.row-2cols-tab > li:nth-child(even),
	.row-2cols-tab > .column:nth-child(even),
	.row-3cols-tab > li:nth-child(3n+3),
	.row-3cols-tab > .column:nth-child(3n+3),
	.row-4cols-tab > li:nth-child(4n+4),
	.row-4cols-tab > .column:nth-child(4n+4),
	.row-5cols-tab > li:nth-child(5n+5),
	.row-5cols-tab > .column:nth-child(5n+5),
	.row-6cols-tab > li:nth-child(6n+6),
	.row-6cols-tab > .column:nth-child(6n+6),
	.row-7cols-tab > li:nth-child(7n+7),
	.row-7cols-tab > .column:nth-child(7n+7),
	.row-8cols-tab > li:nth-child(8n+8),
	.row-8cols-tab > .column:nth-child(8n+8),
	.row-9cols-tab > li:nth-child(9n+9),
	.row-9cols-tab > .column:nth-child(9n+9),
	.row-10cols-tab > li:nth-child(10n+10),
	.row-10cols-tab > .column:nth-child(10n+10),
	.row-11cols-tab > li:nth-child(11n+11),
	.row-11cols-tab > .column:nth-child(11n+11),
	.row-12cols-tab > li:nth-child(12n+12),
	.row-12cols-tab > .column:nth-child(12n+12) {
		margin-right: 0;
	}

	.row-2cols-tab.no-margin > li:nth-child(odd),
	.row-2cols-tab.no-margin > .column:nth-child(odd),
	.row-3cols-tab.no-margin > li:nth-child(3n+1),
	.row-3cols-tab.no-margin > .column:nth-child(3n+1),
	.row-4cols-tab.no-margin > li:nth-child(4n+1),
	.row-4cols-tab.no-margin > .column:nth-child(4n+1),
	.row-5cols-tab.no-margin > li:nth-child(5n+1),
	.row-5cols-tab.no-margin > .column:nth-child(5n+1),
	.row-6cols-tab.no-margin > li:nth-child(6n+1),
	.row-6cols-tab.no-margin > .column:nth-child(6n+1),
	.row-7cols-tab.no-margin > li:nth-child(7n+1),
	.row-7cols-tab.no-margin > .column:nth-child(7n+1),
	.row-8cols-tab.no-margin > li:nth-child(8n+1),
	.row-8cols-tab.no-margin > .column:nth-child(8n+1),
	.row-9cols-tab.no-margin > li:nth-child(9n+1),
	.row-9cols-tab.no-margin > .column:nth-child(9n+1),
	.row-10cols-tab.no-margin > li:nth-child(10n+1),
	.row-10cols-tab.no-margin > .column:nth-child(10n+1),
	.row-11cols-tab.no-margin > li:nth-child(11n+1),
	.row-11cols-tab.no-margin > .column:nth-child(11n+1),
	.row-12cols-tab.no-margin > li:nth-child(12n+1),
	.row-12cols-tab.no-margin > .column:nth-child(12n+1) {
		padding-left: 0;
	}

	.row-2cols-tab.no-margin > li:nth-child(even),
	.row-2cols-tab.no-margin > .column:nth-child(even),
	.row-3cols-tab.no-margin > li:nth-child(3n+3),
	.row-3cols-tab.no-margin > .column:nth-child(3n+3),
	.row-4cols-tab.no-margin > li:nth-child(4n+4),
	.row-4cols-tab.no-margin > .column:nth-child(4n+4),
	.row-5cols-tab.no-margin > li:nth-child(5n+5),
	.row-5cols-tab.no-margin > .column:nth-child(5n+5),
	.row-6cols-tab.no-margin > li:nth-child(6n+6),
	.row-6cols-tab.no-margin > .column:nth-child(6n+6),
	.row-7cols-tab.no-margin > li:nth-child(7n+7),
	.row-7cols-tab.no-margin > .column:nth-child(7n+7),
	.row-8cols-tab.no-margin > li:nth-child(8n+8),
	.row-8cols-tab.no-margin > .column:nth-child(8n+8),
	.row-9cols-tab.no-margin > li:nth-child(9n+9),
	.row-9cols-tab.no-margin > .column:nth-child(9n+9),
	.row-10cols-tab.no-margin > li:nth-child(10n+10),
	.row-10cols-tab.no-margin > .column:nth-child(10n+10),
	.row-11cols-tab.no-margin > li:nth-child(11n+11),
	.row-11cols-tab.no-margin > .column:nth-child(11n+11),
	.row-12cols-tab.no-margin > li:nth-child(12n+11),
	.row-12cols-tab.no-margin > .column:nth-child(12n+12) {
		padding-right: 0;
	}

	/* Push Full Column/Gutter Width */
	.row .column.push11-tab,
	.row li.push11-tab { left: 94.2857137%; }
	.row .column.push10-tab,
	.row li.push10-tab { left: 85.7142852%; }
	.row .column.push9-tab,
	.row li.push9-tab {	left: 77.1428567%; }
	.row .column.push8-tab,
	.row li.push8-tab {	left: 68.5714282%; }
	.row .column.push7-tab,
	.row li.push7-tab {	left: 59.9999999%; }
	.row .column.push6-tab,
	.row li.push6-tab {	left: 51.4285711%; }
	.row .column.push5-tab,
	.row li.push5-tab {	left: 42.8571426%; }
	.row .column.push4-tab,
	.row li.push4-tab {	left: 34.2857141%; }
	.row .column.push3-tab,
	.row li.push3-tab {	left: 25.7142856%; }
	.row .column.push2-tab,
	.row li.push2-tab {	left: 17.1428571%; }
	.row .column.push1-tab,
	.row li.push1-tab {	left: 8.57142857%; }

	/* Push Column Width only. No Gutter */
	.row .column.pushcol-tab,
	.row li.pushcol-tab { left: 5.71428572%; }

	/* Push Gutter Width only. No Column */
	.row .column.pushmargin-tab,
	.row li.pushmargin-tab { left: 2.85714286%; }

	/* Pull Full Column/Gutter Width */
	.row .column.pull11-tab,
	.row li.pull11-tab { left: -94.2857137%; }
	.row .column.pull10-tab,
	.row li.pull10-tab { left: -85.7142852%; }
	.row .column.pull9-tab,
	.row li.pull9-tab {	left: -77.1428567%; }
	.row .column.pull8-tab,
	.row li.pull8-tab {	left: -68.5714282%; }
	.row .column.pull7-tab,
	.row li.pull7-tab {	left: -59.9999999%; }
	.row .column.pull6-tab,
	.row li.pull6-tab {	left: -51.4285711%; }
	.row .column.pull5-tab,
	.row li.pull5-tab {	left: -42.8571426%; }
	.row .column.pull4-tab,
	.row li.pull4-tab {	left: -34.2857141%; }
	.row .column.pull3-tab,
	.row li.pull3-tab {	left: -25.7142856%; }
	.row .column.pull2-tab,
	.row li.pull2-tab {	left: -17.1428571%; }
	.row .column.pull1-tab,
	.row li.pull1-tab {	left: -8.57142857%; }

	/* Pull Column Width only. No Gutter */
	.row .column.pullcol-tab,
	.row li.pullcol-tab { left: -5.71428572%; }

	/* Pull Gutter Width only. No Column */
	.row .column.pullmargin-tab,
	.row li.pullmargin-tab { left: -2.85714286%; }


	.hide-tablet {
		display: none !important;
	}

}


/* 	================================================

	MOBILE VIEW

	================================================ */
@media screen and (max-width: 570px) {

	/* Default Columns are Full Width */
	.row > .column,
	.row > li {
		float: none;
		clear: both;
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}
	.no-margin > .column,
	.no-margin > li {
		padding-left: 0;
		padding-right: 0;
	}

	/* Custom column widths */
	.row .col12-mob { width: 100%; float: none; clear: both; margin-left: 0; margin-right: 0; }
	.row .col11-mob { width: 91.42857143%; float: left; clear: none; }
	.row .col10-mob { width: 82.85714286%; float: left; clear: none; }
	.row .col9-mob { width: 74.28571429%; float: left; clear: none; }
	.row .col8-mob { width: 65.71428571%; float: left; clear: none; }
	.row .col7-mob { width: 57.14285714%; float: left; clear: none; }
	.row .col6-mob { width: 48.57142857%; float: left; clear: none; }
	.row .col5-mob { width: 40%; float: left; clear: none; }
	.row .col4-mob { width: 31.42857143%; float: left; clear: none; }
	.row .col3-mob { width: 22.85714286%; float: left; clear: none; }
	.row .col2-mob { width: 14.2857143%; float: left; clear: none; }
	.row .col1-mob { width: 5.71428572%; float: left; clear: none; }

	/* Push Full Column/Gutter Width */
	.row .column.push11-mob,
	.row li.push11-mob { left: 94.2857137%; }
	.row .column.push10-mob,
	.row li.push10-mob { left: 85.7142852%; }
	.row .column.push9-mob,
	.row li.push9-mob {	left: 77.1428567%; }
	.row .column.push8-mob,
	.row li.push8-mob {	left: 68.5714282%; }
	.row .column.push7-mob,
	.row li.push7-mob {	left: 59.9999999%; }
	.row .column.push6-mob,
	.row li.push6-mob {	left: 51.4285711%; }
	.row .column.push5-mob,
	.row li.push5-mob {	left: 42.8571426%; }
	.row .column.push4-mob,
	.row li.push4-mob {	left: 34.2857141%; }
	.row .column.push3-mob,
	.row li.push3-mob {	left: 25.7142856%; }
	.row .column.push2-mob,
	.row li.push2-mob {	left: 17.1428571%; }
	.row .column.push1-mob,
	.row li.push1-mob {	left: 8.57142857%; }

	/* Push Column Width only. No Gutter */
	.row .column.pushcol-mob,
	.row li.pushcol-mob { left: 5.71428572%; }

	/* Push Gutter Width only. No Column */
	.row .column.pushmargin-mob,
	.row li.pushmargin-mob { left: 2.85714286%; }

	/* Pull Full Column/Gutter Width */
	.row .column.pull11-mob,
	.row li.pull11-mob { left: -94.2857137%; }
	.row .column.pull10-mob,
	.row li.pull10-mob { left: -85.7142852%; }
	.row .column.pull9-mob,
	.row li.pull9-mob {	left: -77.1428567%; }
	.row .column.pull8-mob,
	.row li.pull8-mob {	left: -68.5714282%; }
	.row .column.pull7-mob,
	.row li.pull7-mob {	left: -59.9999999%; }
	.row .column.pull6-mob,
	.row li.pull6-mob {	left: -51.4285711%; }
	.row .column.pull5-mob,
	.row li.pull5-mob {	left: -42.8571426%; }
	.row .column.pull4-mob,
	.row li.pull4-mob {	left: -34.2857141%; }
	.row .column.pull3-mob,
	.row li.pull3-mob {	left: -25.7142856%; }
	.row .column.pull2-mob,
	.row li.pull2-mob {	left: -17.1428571%; }
	.row .column.pull1-mob,
	.row li.pull1-mob {	left: -8.57142857%; }

	/* Pull Column Width only. No Gutter */
	.row .column.pullcol-mob,
	.row li.pullcol-mob { left: -5.71428572%; }

	/* Pull Gutter Width only. No Column */
	.row .column.pullmargin-mob,
	.row li.pullmargin-mob { left: -2.85714286%; }

	/* Add margin/padding for multi columns */
	.row-2cols-mob > li,
	.row-2cols-mob > .column,
	.row-3cols-mob > li,
	.row-3cols-mob > .column,
	.row-4cols-mob > li,
	.row-4cols-mob > .column,
	.row-5cols-mob > li,
	.row-5cols-mob > .column,
	.row-6cols-mob > li,
	.row-6cols-mob > .column,
	.row-7cols-mob > li,
	.row-7cols-mob > .column,
	.row-8cols-mob > li,
	.row-8cols-mob > .column,
	.row-9cols-mob > li,
	.row-9cols-mob > .column,
	.row-10cols-mob > li,
	.row-10cols-mob > .column,
	.row-11cols-mob > li,
	.row-11cols-mob > .column,
	.row-12cols-mob > li,
	.row-12cols-mob > .column {
		clear: none;
		float: left;
		margin-left: 1.42857143%;
		margin-right: 1.42857143%;
	}

	.row-2cols-mob.no-margin > li,
	.row-2cols-mob.no-margin > .column,
	.row-3cols-mob.no-margin > li,
	.row-3cols-mob.no-margin > .column,
	.row-4cols-mob.no-margin > li,
	.row-4cols-mob.no-margin > .column,
	.row-5cols-mob.no-margin > li,
	.row-5cols-mob.no-margin > .column,
	.row-6cols-mob.no-margin > li,
	.row-6cols-mob.no-margin > .column,
	.row-7cols-mob.no-margin > li,
	.row-7cols-mob.no-margin > .column,
	.row-8cols-mob.no-margin > li,
	.row-8cols-mob.no-margin > .column,
	.row-9cols-mob.no-margin > li,
	.row-9cols-mob.no-margin > .column,
	.row-10cols-mob.no-margin > li,
	.row-10cols-mob.no-margin > .column,
	.row-11cols-mob.no-margin > li,
	.row-11cols-mob.no-margin > .column,
	.row-12cols-mob.no-margin > li,
	.row-12cols-mob.no-margin > .column {
		padding-left: 1.42857143%;
		padding-right: 1.42857143%;
	}

	/* Set widths for mobile classes */
	.row-2cols-mob > li,
	.row-2cols-mob > .column { width:48.57142857%; }
	.row-3cols-mob > li,
	.row-3cols-mob > .column { width:31.42857143%; }
	.row-4cols-mob > li,
	.row-4cols-mob > .column { width:22.85714286%; }
	.row-5cols-mob > li,
	.row-5cols-mob > .column { width:17.714285712%; }
	.row-6cols-mob > li,
	.row-6cols-mob > .column { width:14.2857143%; }
	.row-7cols-mob > li,
	.row-7cols-mob > .column { width:11.8367346%; }
	.row-8cols-mob > li,
	.row-8cols-mob > .column { width:9.99999999%; }
	.row-9cols-mob > li,
	.row-9cols-mob > .column { width:8.57142857%; }
	.row-10cols-mob > li,
	.row-10cols-mob > .column { width:7.4285714%; }
	.row-11cols-mob > li,
	.row-11cols-mob > .column { width:6.4935065%; }
	.row-12cols-mob > li,
	.row-12cols-mob > .column { width: 5.71428572%; }

	/* Remove margin/padding on first last columns in even width rows */
	.row-2cols-mob > li:nth-child(odd),
	.row-2cols-mob > .column:nth-child(odd),
	.row-3cols-mob > li:nth-child(3n+1),
	.row-3cols-mob > .column:nth-child(3n+1),
	.row-4cols-mob > li:nth-child(4n+1),
	.row-4cols-mob > .column:nth-child(4n+1),
	.row-5cols-mob > li:nth-child(5n+1),
	.row-5cols-mob > .column:nth-child(5n+1),
	.row-6cols-mob > li:nth-child(6n+1),
	.row-6cols-mob > .column:nth-child(6n+1),
	.row-7cols-mob > li:nth-child(7n+1),
	.row-7cols-mob > .column:nth-child(7n+1),
	.row-8cols-mob > li:nth-child(8n+1),
	.row-8cols-mob > .column:nth-child(8n+1),
	.row-9cols-mob > li:nth-child(9n+1),
	.row-9cols-mob > .column:nth-child(9n+1),
	.row-10cols-mob > li:nth-child(10n+1),
	.row-10cols-mob > .column:nth-child(10n+1),
	.row-11cols-mob > li:nth-child(11n+1),
	.row-11cols-mob > .column:nth-child(11n+1),
	.row-12cols-mob > li:nth-child(12n+1),
	.row-12cols-mob > .column:nth-child(12n+1) {
		clear: both;
		margin-left: 0;
	}

	.row-2cols-mob > li:nth-child(even),
	.row-2cols-mob > .column:nth-child(even),
	.row-3cols-mob > li:nth-child(3n+3),
	.row-3cols-mob > .column:nth-child(3n+3),
	.row-4cols-mob > li:nth-child(4n+4),
	.row-4cols-mob > .column:nth-child(4n+4),
	.row-5cols-mob > li:nth-child(5n+5),
	.row-5cols-mob > .column:nth-child(5n+5),
	.row-6cols-mob > li:nth-child(6n+6),
	.row-6cols-mob > .column:nth-child(6n+6),
	.row-7cols-mob > li:nth-child(7n+7),
	.row-7cols-mob > .column:nth-child(7n+7),
	.row-8cols-mob > li:nth-child(8n+8),
	.row-8cols-mob > .column:nth-child(8n+8),
	.row-9cols-mob > li:nth-child(9n+9),
	.row-9cols-mob > .column:nth-child(9n+9),
	.row-10cols-mob > li:nth-child(10n+10),
	.row-10cols-mob > .column:nth-child(10n+10),
	.row-11cols-mob > li:nth-child(11n+11),
	.row-11cols-mob > .column:nth-child(11n+11),
	.row-12cols-mob > li:nth-child(12n+12),
	.row-12cols-mob > .column:nth-child(12n+12) {
		margin-right: 0;
	}

	.row-2cols-mob.no-margin > li:nth-child(odd),
	.row-2cols-mob.no-margin > .column:nth-child(odd),
	.row-3cols-mob.no-margin > li:nth-child(3n+1),
	.row-3cols-mob.no-margin > .column:nth-child(3n+1),
	.row-4cols-mob.no-margin > li:nth-child(4n+1),
	.row-4cols-mob.no-margin > .column:nth-child(4n+1),
	.row-5cols-mob.no-margin > li:nth-child(5n+1),
	.row-5cols-mob.no-margin > .column:nth-child(5n+1),
	.row-6cols-mob.no-margin > li:nth-child(6n+1),
	.row-6cols-mob.no-margin > .column:nth-child(6n+1),
	.row-7cols-mob.no-margin > li:nth-child(7n+1),
	.row-7cols-mob.no-margin > .column:nth-child(7n+1),
	.row-8cols-mob.no-margin > li:nth-child(8n+1),
	.row-8cols-mob.no-margin > .column:nth-child(8n+1),
	.row-9cols-mob.no-margin > li:nth-child(9n+1),
	.row-9cols-mob.no-margin > .column:nth-child(9n+1),
	.row-10cols-mob.no-margin > li:nth-child(10n+1),
	.row-10cols-mob.no-margin > .column:nth-child(10n+1),
	.row-11cols-mob.no-margin > li:nth-child(11n+1),
	.row-11cols-mob.no-margin > .column:nth-child(11n+1),
	.row-12cols-mob.no-margin > li:nth-child(12n+1),
	.row-12cols-mob.no-margin > .column:nth-child(12n+1) {
		padding-left: 0;
	}

	.row-2cols-mob.no-margin > li:nth-child(even),
	.row-2cols-mob.no-margin > .column:nth-child(even),
	.row-3cols-mob.no-margin > li:nth-child(3n+3),
	.row-3cols-mob.no-margin > .column:nth-child(3n+3),
	.row-4cols-mob.no-margin > li:nth-child(4n+4),
	.row-4cols-mob.no-margin > .column:nth-child(4n+4),
	.row-5cols-mob.no-margin > li:nth-child(5n+5),
	.row-5cols-mob.no-margin > .column:nth-child(5n+5),
	.row-6cols-mob.no-margin > li:nth-child(6n+6),
	.row-6cols-mob.no-margin > .column:nth-child(6n+6),
	.row-7cols-mob.no-margin > li:nth-child(7n+7),
	.row-7cols-mob.no-margin > .column:nth-child(7n+7),
	.row-8cols-mob.no-margin > li:nth-child(8n+8),
	.row-8cols-mob.no-margin > .column:nth-child(8n+8),
	.row-9cols-mob.no-margin > li:nth-child(9n+9),
	.row-9cols-mob.no-margin > .column:nth-child(9n+9),
	.row-10cols-mob.no-margin > li:nth-child(10n+10),
	.row-10cols-mob.no-margin > .column:nth-child(10n+10),
	.row-11cols-mob.no-margin > li:nth-child(11n+11),
	.row-11cols-mob.no-margin > .column:nth-child(11n+11),
	.row-12cols-mob.no-margin > li:nth-child(12n+11),
	.row-12cols-mob.no-margin > .column:nth-child(12n+12) {
		padding-right: 0;
	}

	.no-margin > .column,
	.no-margin > li {
		margin: 0;
	}

	.hide-mobile {
		display: none !important;
	}
}





/*	-----------------------------------
	Resets
	----------------------------------- */

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 {
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
html, body {
	max-width: 100%;
	overflow-x: hidden;
	width: 100%;
}
body {
	line-height: 1;
}

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

hr,
.hr {
	background: #dadada;
	border: none;
	display: block;
	height: 1px;
	margin: 30px auto;
	padding: 0;
	width: 100%;
}
/*	-----------------------------------
	Font Declarations
	----------------------------------- */
@font-face {
	font-family: 'icons';
	src:url('/asset/font/icons/icons.eot');
	src:url('/asset/font/icons/icons.eot?#iefix') format('embedded-opentype'),
		url('/asset/font/icons/icons.ttf') format('truetype'),
		url('/asset/font/icons/icons.woff') format('woff'),
		url('/asset/font/icons/icons.svg#icons') format('svg');
	font-weight: normal;
	font-style: normal;
}
[class*="icon-"] {
	font-family: 'icons';
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	line-height: 1;
	speak: none;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

[class*="icon-"]:before {
	display: block;
	position: absolute;
	text-indent: 0;
}

/* Logos */
.icon-amiibo:before 	{ content: "\e900"; }
.icon-nintendo:before	{ content: "\e617\00a0"; } /* add nbsp after to fix android bug */
.icon-facebook:before	{ content: "\e616"; }
.icon-instagram:before 	{ content: "\e615"; }
.icon-tumblr:before		{ content: "\e614"; }
.icon-twitter:before	{ content: "\e613"; }
.icon-youtube:before	{ content: "\e612"; }
.icon-3ds:before		{ content: "\e619"; }
.icon-wiiu:before		{ content: "\e61a"; }
.icon-eshop-nin:before	{ content: "\e61e"; } /* eshop classes need to be wrapped in a .logo-eshop class defined in widgets.css */
.icon-eshop:before		{ content: "\e61f"; }

/* Thick Pagination Arrow */
.icon-arrow-01-up:before 	{ content: "\e603"; }
.icon-arrow-01-right:before { content: "\e602"; }
.icon-arrow-01-left:before 	{ content: "\e601"; }
.icon-arrow-01-down:before 	{ content: "\e600"; }
/* Thin Text Arrow */
.icon-arrow-02-up:before 	{ content: "\e607"; }
.icon-arrow-02-right:before { content: "\e606"; }
.icon-arrow-02-left:before 	{ content: "\e605"; }
.icon-arrow-02-down:before 	{ content: "\e604"; }
/* Double Thin Text Arrow */
.icon-arrow-02-up-double:before 	{ content: "\e607\A\e607"; line-height: 0.5; white-space: pre; }
.icon-arrow-02-right-double:before 	{ content: "\e606\e606";   letter-spacing: -0.5em; padding-right: 0.5em; }
.icon-arrow-02-left-double:before 	{ content: "\e605\e605";   letter-spacing: -0.5em; padding-right: 0.5em; }
.icon-arrow-02-down-double:before 	{ content: "\e604\A\e604"; line-height: 0.5; white-space: pre; }

/* Solid Triangle */
.icon-arrow-03-up:before 	{ content: "\e60b"; }
.icon-arrow-03-right:before { content: "\e60a"; }
.icon-arrow-03-left:before 	{ content: "\e609"; }
.icon-arrow-03-down:before 	{ content: "\e608"; }
/* Accordion Arrows */
.icon-arrow-04-up:before	{ content: "\e60f"; }
.icon-arrow-04-right:before { content: "\e60e"; }
.icon-arrow-04-left:before 	{ content: "\e60d"; }
.icon-arrow-04-down:before 	{ content: "\e60c"; }

/* Icons */
.icon-x-thick:before 	    { content: "\e61b"; }
.icon-x-thin:before 	    { content: "\e61c"; }
.icon-search:before		    { content: "\e610"; }
.icon-menu:before 		    { content: "\e611"; }
.icon-rss:before 		    { content: "\e618"; }
.icon-play:before 		    { content: "\e61d"; }
.icon-check:before 		    { content: "\e620"; }
.icon-top:before 		    { content: "\e621"; }
.icon-wiiu:before 		    { content: "\e622"; color: #00a0C8; }
.icon-wii:before 		    { content: "\e623"; color: #13b5ea; }
.icon-web:before 		    { content: "\e624"; color: #9b9b9b; }
.icon-support:before     	{ content: "\e625"; color: #9b9b9b; }
.icon-news:before 		    { content: "\e627"; color: #9b9b9b; }
.icon-3dsxl:before 		    { content: "\e628"; color: #b01e23; }
.icon-ds:before 		    { content: "\e629"; color: #000; }
.icon-featured:before       { content: "\e626"; color: #ffbf05; }



@font-face {
	font-family: 'LatoHairline';
	src: url('/asset/font/lato/Lato-Hai-Webfont.eot');
	src: url('/asset/font/lato/Lato-Hai-Webfont.eot?#iefix') format('embedded-opentype'),
		url('/asset/font/lato/Lato-Hai-Webfont.woff') format('woff'),
		url('/asset/font/lato/Lato-Hai-Webfont.ttf') format('truetype'),
		url('/asset/font/lato/Lato-Hai-Webfont.svg#LatoHairline') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'LatoHairlineItalic';
	src: url('/asset/font/lato/Lato-HaiIta-Webfont.eot');
	src: url('/asset/font/lato/Lato-HaiIta-Webfont.eot?#iefix') format('embedded-opentype'),
	url('/asset/font/lato/Lato-HaiIta-Webfont.woff') format('woff'),
	url('/asset/font/lato/Lato-HaiIta-Webfont.ttf') format('truetype'),
	url('/asset/font/lato/Lato-HaiIta-Webfont.svg#LatoHairlineItalic') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'LatoLight';
	src: url('/asset/font/lato/Lato-Lig-Webfont.eot');
	src: url('/asset/font/lato/Lato-Lig-Webfont.eot?#iefix') format('embedded-opentype'),
		url('/asset/font/lato/Lato-Lig-Webfont.woff') format('woff'),
		url('/asset/font/lato/Lato-Lig-Webfont.ttf') format('truetype'),
		url('/asset/font/lato/Lato-Lig-Webfont.svg#LatoLight') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'LatoLightItalic';
	src: url('/asset/font/lato/Lato-LigIta-Webfont.eot');
	src: url('/asset/font/lato/Lato-LigIta-Webfont.eot?#iefix') format('embedded-opentype'),
		url('/asset/font/lato/Lato-LigIta-Webfont.woff') format('woff'),
		url('/asset/font/lato/Lato-LigIta-Webfont.ttf') format('truetype'),
		url('/asset/font/lato/Lato-LigIta-Webfont.svg#LatoLightItalic') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'LatoRegular';
	src: url('/asset/font/lato/Lato-Reg-Webfont.eot');
	src: url('/asset/font/lato/Lato-Reg-Webfont.eot?#iefix') format('embedded-opentype'),
		url('/asset/font/lato/Lato-Reg-Webfont.woff') format('woff'),
		url('/asset/font/lato/Lato-Reg-Webfont.ttf') format('truetype'),
		url('/asset/font/lato/Lato-Reg-Webfont.svg#LatoRegular') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'LatoItalic';
	src: url('/asset/font/lato/Lato-RegIta-Webfont.eot');
	src: url('/asset/font/lato/Lato-RegIta-Webfont.eot?#iefix') format('embedded-opentype'),
		url('/asset/font/lato/Lato-RegIta-Webfont.woff') format('woff'),
		url('/asset/font/lato/Lato-RegIta-Webfont.ttf') format('truetype'),
		url('/asset/font/lato/Lato-RegIta-Webfont.svg#LatoItalic') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'LatoBold';
	src: url('/asset/font/lato/Lato-Bol-Webfont.eot');
	src: url('/asset/font/lato/Lato-Bol-Webfont.eot?#iefix') format('embedded-opentype'),
		url('/asset/font/lato/Lato-Bol-Webfont.woff') format('woff'),
		url('/asset/font/lato/Lato-Bol-Webfont.ttf') format('truetype'),
		url('/asset/font/lato/Lato-Bol-Webfont.svg#LatoBold') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'LatoBoldItalic';
	src: url('/asset/font/lato/Lato-BolIta-Webfont.eot');
	src: url('/asset/font/lato/Lato-BolIta-Webfont.eot?#iefix') format('embedded-opentype'),
		url('/asset/font/lato/Lato-BolIta-Webfont.woff') format('woff'),
		url('/asset/font/lato/Lato-BolIta-Webfont.ttf') format('truetype'),
		url('/asset/font/lato/Lato-BolIta-Webfont.svg#LatoBoldItalic') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'LatoBlack';
	src: url('/asset/font/lato/Lato-Bla-Webfont.eot');
	src: url('/asset/font/lato/Lato-Bla-Webfont.eot?#iefix') format('embedded-opentype'),
		url('/asset/font/lato/Lato-Bla-Webfont.woff') format('woff'),
		url('/asset/font/lato/Lato-Bla-Webfont.ttf') format('truetype'),
		url('/asset/font/lato/Lato-Bla-Webfont.svg#LatoBlack') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'LatoBlackItalic';
	src: url('/asset/font/lato/Lato-BlaIta-Webfont.eot');
	src: url('/asset/font/lato/Lato-BlaIta-Webfont.eot?#iefix') format('embedded-opentype'),
		url('/asset/font/lato/Lato-BlaIta-Webfont.woff') format('woff'),
		url('/asset/font/lato/Lato-BlaIta-Webfont.ttf') format('truetype'),
		url('/asset/font/lato/Lato-BlaIta-Webfont.svg#LatoBlackItalic') format('svg');
	font-weight: normal;
	font-style: normal;
}


/*	-----------------------------------
	Baselines
	----------------------------------- */

html {
	height: 100%;
}

body {
	background: #989898;
	line-height: 1.2;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}

div#page-container {
	background: #fff;
	box-shadow: 0 -10px 25px rgba(0,0,0,0.2);
	display: block;
	overflow: hidden; /* prevent selecting text and horizontally scrolling when content is off the right edge (carousel arrows) */
	padding-top: 0;
	position: relative;
	width: 100%;
}
div.page-content {
	padding-top: 30px;
}
.no-top-margin {
	margin-top: 0 !important;
}
.no-bottom-margin {
	margin-bottom: 0 !important;
}

/* --- Desktop Headline Fonts --- */
h1, .h1 {
	color: #000;
	font-family: 'LatoLight';
	font-size: 66px;
	margin: 0;
}
h2, .h2 {
	color: #000;
	font-family: 'LatoLight';
	font-size: 44px;
	margin: 0 0 10px;
}
h3, .h3 {
	color: #000;
	font-family: 'LatoLight';
	font-size: 30px;
	margin: 0 0 10px;
}
h4, .h4 {
	color: #484848;
	font-family: 'LatoBlack';
	font-size: 40px;
	margin: 0 0 10px;
}
h5, .h5 {
	color: #484848;
	font-family: 'LatoBlack';
	font-size: 32px;
	margin: 0 0 10px;
}

/* --- Desktop Body Fonts --- */
body, .b1 {
	color: #777;
	font-family: 'LatoRegular';
	font-size: 16px;
}
.b2 {
	color: #999;
	font-family: 'LatoBold';
	font-size: 16px;
}
.b3 {
	color: #777;
	font-family: 'LatoBold';
	font-size: 20px;
	margin: 0 0 10px;
}
.b4 {
	color: #999;
	font-family: 'LatoRegular';
	font-size: 14px;
}
.b5 {
	color: #777;
	font-family: 'LatoRegular';
	font-size: 20px;
}
.b6 {
	color: #000;
	font-family: 'LatoLight';
	font-size: 20px;
}
.b7 {
	color: #484848;
	font-family: 'LatoBlack';
	font-size: 24px;
	margin: 0 0 10px;
}

small,
.b8 {
	color: #777;
	font-family: 'LatoRegular';
	font-size: 14px;
}

p {
	line-height: 1.5;
	margin: 0 0 20px;
}

ol, ul { }

a {
	color: #2576bc;
	cursor: pointer;
	text-decoration: none;
}
a.h1, a.h2, a.h3, a.h4, a.h5,
a.b1, a.b2, a.b3, a.b4, a.b5, a.b6, a.b7, a.b8 {
	color: #2576bc;
}
a:hover {
	color: #3aa4ff;
	text-decoration: underline;
}
a.h1:hover, a.h2:hover, a.h3:hover, a.h4:hover, a.h5:hover,
a.b1:hover, a.b2:hover, a.b3:hover, a.b4:hover, a.b5:hover, a.b6:hover, a.b7:hover, a.b8:hover {
	color: #3aa4ff;
}

strong.sale-price {
	color: #f47b2b;
}

.sales-snipe {
    background-color: #f47b2b;
    color: white;
    border-radius: 8px 8px 0 0;
    font-size: 13px;
    margin-left: 8px;
    padding: 1px 14px;
    position: absolute;
    font-weight: bold;
}

h1 a:hover, a.h1:hover,
h2 a:hover, a.h2:hover,
h3 a:hover, a.h3:hover {
	border-bottom: 1px solid #3aa4ff;
	text-decoration: none;
}

a:visited div {
	border-color: inherit; /* Safari border-color bug fix */
}

strong, b {
	font-family: 'LatoBold';
	font-size: inherit;
}
i, em {
	font-family: 'LatoItalic';
}

i b, 
em b,
b i, 
b em {
	font-family: 'LatoBoldItalic';
}


sup {
	font-size: 0.7em;
	vertical-align: super;
}
sub {
	font-size: 0.7em;
	vertical-align: sub;
}

input, textarea {
	font-family: 'LatoRegular';
}
	input::-webkit-search-cancel-button {
		-webkit-appearance: none;
	}
	input::-ms-clear {
		display: none;
	}

/*	-----------------------------------
	Utilities
	----------------------------------- */

.left {
	float: left;
}

.right {
	float: right;
}

.center {
	text-align: center;
}

.table {
	display: table;
	height: 100%;
}
	.table-cell {
		display: table-cell;
		float: none;
		vertical-align: middle;
	}

.nowrap {
	white-space: nowrap;	
}

.invisible {
	opacity: 0;
}

.offscreen {
	display: block;
	left: -999999px;
	position: absolute;
	top: -999999px;
}

.hide-text {
	display: block;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}

.clear {
	clear: both;
	display: block;
	width: 100%;
}

.clearfix {
	display: inline-block;
}

.clear-fix:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	height: 0;
	visibility: hidden;
}

.loader {
	background: url('/images/global/loader.gif') center center no-repeat;
	height: 100%;
	width: 100%;
}

.jump-target {
	display: block;
	position: relative;
	top: -110px;
}


/* 	================================================

	TABLET VIEW

	================================================ */
@media screen and (min-width: 571px) and (max-width: 768px) {

/*	-----------------------------------
	Baselines
	----------------------------------- */
	div#page-container {
		padding-top: 0;
	}

	/* --- Desktop Headline Fonts --- */
	h3, .h3 {
		font-size: 24px;
	}
/*	-----------------------------------
	Utilities
	----------------------------------- */
	.left-tab {
		float: left;
	}

	.right-tab {
		float: right;
	}

	.center-tab {
		text-align: center;
	}

}

/* 	================================================

	MOBILE VIEW

	================================================ */
@media screen and (max-width: 570px) {

/*	-----------------------------------
	Baselines
	----------------------------------- */

	div#page-container {
		padding-top: 0;
	}

	/* --- Mobile Headline Fonts --- */
	h1, .h1 {
		font-size: 46px;
		/*margin-bottom: 30px;*/
	}
	h2, .h2 {
		font-size: 40px;
	}
	h3, .h3 {
		font-size: 24px;
	}
	h4, .h4 {
		font-size: 30px;
	}
	h5, .h5 {
		font-size: 30px;
	}

	/* --- Mobile Body Fonts --- */
	body, .b1 {
		font-size: 18px;
	}
	.b4 {
		font-size: 16px;
	}
	.b5 {
		font-size: 18px;
	}
	.b6 {
		font-size: 18px;
	}
	.b7 {
		font-size: 22px;
	}
	.b8 {
		font-size: 16px;
	}
/*	-----------------------------------
	Utilities
	----------------------------------- */
	.left-mob {
		float: left;
	}

	.right-mob {
		float: right;
	}

	.center-mob {
		text-align: center;
	}

	.jump-target {
		top: -80px;
	}

}

/* 	================================================

	3DS Browser Specific Styles

	================================================ */

body.nin3DS h1,
body.nin3DS .h1 {
	font-size: 36px;
}
body.nin3DS h2,
body.nin3DS .h2 {
	font-size: 28px;
}
body.nin3DS h3,
body.nin3DS .h3 {
	font-size: 20px;
}
body.nin3DS h4,
body.nin3DS .h4 {
	font-size: 24px;
}

body.nin3DS,
body.nin3DS .b1 {
	font-size: 14px;
}
body.nin3DS .b3 {
	font-size: 16px;
}
body.nin3DS .b4 {
	font-size: 14px;
}
body.nin3DS .b7 {
	font-size: 18px;
}


body.nin3DS [class*="icon-"]:before {
	display: none;
}
body.nin3DS .icon-facebook,
body.nin3DS .icon-twitter,
body.nin3DS .icon-youtube,
body.nin3DS .icon-tumblr,
body.nin3DS .icon-instagram {
	background: url('/images/global/no-icon-font-header-footer.png') no-repeat;
	height: 35px;
	overflow: hidden;
	width: 35px;
}
body.nin3DS .icon-facebook  { background-position: 0 -95px; }
body.nin3DS .icon-twitter   { background-position: -35px -95px; }
body.nin3DS .icon-youtube   { background-position: -70px -95px; }
body.nin3DS .icon-tumblr    { background-position: 0 -130px; }
body.nin3DS .icon-instagram { background-position: -35px -130px; }



nclood-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}

nclood-video .chapter-marker {
	position: absolute;
	top: -2px;
	height: 11px;
	width: 11px;
	background: #ABA6A6;
	border-radius: 50px;
	left: 0;
	pointer-events: none
}
nclood-video .innerWrapper {
    position: absolute!important;
    top: 0;
    left: 0;
    width: 100%!important;
    height: 100%!important;
    min-width: initial;
}

nclood-video .icon-play:before {
	content: none;
}

nclood-video .chromeless .oo-control-bar {
	display: none;
}

/* only show Auto and last bitrate, change last bitrate's label to "HD" */
nclood-video .oo-player-container .oo-quality-popover .oo-quality-screen-content ul li:not(.oo-auto-li):not(:last-child) {
	display:none;
}
nclood-video .oo-player-container .oo-quality-popover .oo-quality-screen-content ul li:not(.oo-auto-li) a.oo-quality-btn {
	color:transparent;
	position:relative;
}
	nclood-video .oo-player-container .oo-quality-popover .oo-quality-screen-content ul li:not(.oo-auto-li) a.oo-quality-btn:after {
		content:"HD";
		color:#fff;
		font-family:"Roboto",sans-serif;
		position:relative;
		line-height:1;
		position:absolute;
		top:0;
		left:0;
		width:100%;
		text-align:center;
		font-size:14px;
	}
nclood-video .oo-player-container .oo-quality-popover .oo-quality-screen-content ul li:not(.oo-auto-li) a.oo-quality-btn.oo-selected:after{
	color:#448aff;
	font-weight:bold;
}


/*	-----------------------------------
	NOTES:
	- Global nav is pinned via position:fixed on #global-header
	- On mobile it is NOT pinned via position:absolute. Remove this line from the mobile styles to pin.
	----------------------------------- */


/* --- Global Back to top button (tablet/mobile) --- */

a.back-to-top {
   background: rgba(37, 118, 188, 1);
   opacity: 0;
   border: 1px solid #fff;
   border-radius: 2px;
   box-shadow: 0 0 3px rgba(0, 0, 0, .5);
   bottom: 40px;
   -webkit-transform: translate3d(0, 0, 0px);
   display: block;
   height: 35px;
   width: 35px;
   overflow: hidden;
   position: fixed;
   right: 10px;
   text-indent: -99999em;
   text-decoration: none;
   z-index: 100;
   opacity: 0;
   -webkit-transition: opacity .4s ease-in-out;
   -moz-transition: opacity .4s ease-in-out;
   -ms-transition: opacity .4s ease-in-out;
   -o-transition: opacity .4s ease-in-out;
   transition: opacity .4s ease-in-out;
}

a.back-to-top:before {
   color: #fff;
   content: "\e621";
   display: block;
   font-family: 'icons';
   font-size: 18px;
   height: 100%;
   line-height: 37px;
   text-align: center;
   text-indent: 0;
   width: 100%;
}

a.back-to-top.is-on {
   opacity: .7;
}

a.back-to-top.is-off {
   opacity: 0;
}

a.back-to-top.is-inactive {
   opacity: .2;
}

a.back-to-top.is-hidden {
   right: 999px;
}

#header-overlay, #header-search-overlay {
   position: fixed;
   left: 0;
   top: 0;
   width: 100%;
   bottom: 0;
   opacity: 0;
   visibility: hidden;
   background: rgba(0, 0, 0, 0.4);
}

#header-search-overlay {
   position: absolute;
   top: 40px;
   height: 30px;
}

#header-overlay.active, #header-search-overlay.active {
   visibility: visible;
   opacity: 1;
   z-index: 2;
}

#header-overlay.active {
   z-index: 9999;
}

@media screen and (max-width: 768px) {
   .hide-small {
      display: none !important
   }
}

@media screen and (min-width: 769px) {
   .hide-large {
      display: none !important
   }
}

body {
   padding-top: 72px;
}

@media (max-width: 768px) {
   body {
      padding-top: 85px;
   }
}

#global-header {
   box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
   background: none;
   font-size: 14px;
   position: relative;
   width: 100%;
   z-index: 10000;
   display: block;
   font-family: "LatoRegular", sans-serif;
   font-weight: 400;
}

#global-header .wrapper {
   margin-left: auto;
   margin-right: auto;
   max-width: 980px;
   min-width: 960px;
   width: 980px
}

@media screen and (max-width: 980px) {
   #global-header .wrapper {
      max-width: 100%;
      min-width: 0;
      box-sizing: border-box
   }
}

#global-header .top-nav .wrapper, #global-header nav .wrapper {
   max-width: 1286px;
   width: 100%
}

#global-header a {
   text-decoration: none;
   cursor: pointer
}

#global-header.pin {
   position: fixed;
   top: 0;
   left: 0;
   transition: transform 0.8s cubic-bezier(0.6, 0, 0.4, 1);
   will-change: transform;
}

body.not-at-top #global-header.pin {
   transform: translateY(-86px);
}

body.not-at-top.scrolling-up #global-header.pin, body.not-at-top.search-active #global-header.pin {
   transform: translateY(0);
}

@media (max-width: 768px) {
   body.not-at-top #global-header.pin {
      transform: translateY(-85px);
   }
   #global-header.pin.expanded {
      height: calc(123.205vw + 1rem + 85px);
      overflow-y: scroll;
      overflow-x: hidden;
      box-shadow: none;
      max-height: 100vh;
   }
   #global-header.pin.expanded .expanded-nav-container {
      height: calc(123.205vw + 1rem);
   }
   #global-header.pin.expanded .expanded-nav-container>div:not(.active) {
      height: 0
   }
   #global-header.pin.expanded.gamestore {
      height: calc(108.54vw + 1rem + 85px);
   }
   #global-header.pin.expanded.gamestore .expanded-nav-container {
      height: calc(108.54vw + 1rem);
   }
   #global-header.pin.expanded.additional {
      height: calc(67.324vw + 1rem + 85px);
   }
   #global-header.pin.expanded.additional .expanded-nav-container {
      height: calc(67.324vw + 1rem);
   }
}

#global-header .search-flex {
   flex: 1;
   position: relative;
   justify-content: flex-end;
   display: inline-flex;
}

#global-header .search-flex #search-container {
   flex: 1;
}

#global-header .search-suggestions {
   background: #fff;
   background-image: linear-gradient(-180deg, #FFFFFF 1%, #DADADA 98%);
   box-shadow: 0px 4px 0px 0px rgba(0,0,0,0.20);
   text-align: left;
   padding: 1rem 1rem 1.5rem;
   color: #000;
   border-radius: 0 0 20px 20px;
   position: absolute;
   top: 100%;
   left: 0;
   width: 100%;
   z-index: 1;
   transform: perspective(500px) rotateX(-90deg);
   transform-origin: center top;
   transition: transform 300ms ease-in-out;
}

#global-header nav .search-suggestions {
   border-radius: 0;
}
#global-header nav .search-suggestions .games-search-autosuggest li:nth-child(n + 4) {
   display: none;
}
#global-header nav .search-suggestions .games-search-autosuggest li:last-child {
   display: block;
}
#global-header nav .search-suggestions {
   padding-bottom: 2.5rem;
}
#global-header .search-suggestions .quick-links strong {
   color: #B1B1B1;
   font-family: LatoBold !important;
}
#global-header .search-suggestions .quick-links ul {
   margin-top: 10px;
}
#global-header .search-suggestions .quick-links ul li {
   line-height: 1.85;
}
#global-header .search-suggestions a {
   color: #888;
}
#global-header .search-suggestions .quick-links ul li a {
   color: #2576BC;
}
#global-header .search-suggestions .quick-links a:hover {
   color: #00d2be;
}
@media (max-width: 768px) {
	#global-header .search-suggestions .gsa-search-autosuggest {
		padding-top: 0;
      padding-bottom: 0;
		border-top: none;
		display: block;
		height: 0;
		overflow-y: hidden;
	}
	#global-header nav .search-suggestions {
		padding-bottom: 0;
	}
}
#global-header input.search-nintendo {
   border: none;
   background-color: transparent;
   color: inherit;
   font-size: 20px;
   width: 100%;
   height: 42px;
   outline: none;
   padding-left: 10px;
   margin: 0;
   pointer-events: none;
   transform: perspective(500px) rotateX(-90deg);
   transform-origin: center top;
   transition: transform 300ms ease-in-out, opacity 300ms ease-in-out;
   -webkit-appearance: none;
   border-radius: 0;
   display: block;
}
#global-header input::-ms-clear {
   display: none;
}
#global-header input.search-nintendo::-webkit-input-placeholder {
   color: inherit;
   opacity: 0.8
}

#global-header input.search-nintendo:-moz-placeholder {
   color: inherit;
   opacity: 0.8
}

#global-header input.search-nintendo::-moz-placeholder {
   color: inherit;
   opacity: 0.8
}
#global-header input.search-nintendo::-ms-input-placeholder {
   color: inherit;
   opacity: 0.8
}
#global-header input.search-nintendo::-webkit-search-cancel-button,
#global-header input.search-nintendo::-webkit-search-decoration,
#global-header input.search-nintendo::-webkit-search-results-button,
#global-header input.search-nintendo::-webkit-search-results-decoration {
   display: none;
}
#global-header nav input.search-nintendo {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 40px;
   opacity: 1;
   color: #888 !important;
   transform: perspective(500px) rotateX(-90deg);
   transform-origin: center top;
   border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}
.search-active #global-header .top-nav .search-toggle span {
   transform: perspective(500px) rotateX(-90deg);
}

.search-active #global-header .top-nav .search-toggle svg {
   fill: #00d2be;
}

.search-active #global-header .top-nav .search-toggle svg circle {
   transform: scale(1);
   transition: transform 400ms cubic-bezier(0.175, 0.885, 0.325, 1.15)
}

.search-active #global-header .top-nav .search-toggle .close-x {
   transform: perspective(500px) rotateX(0)
}

.search-active #global-header .top-nav input.search-nintendo {
   transform: none;
   pointer-events: auto;
}

.search-active #global-header nav input.search-nintendo {
   transform: none;
   pointer-events: auto;
   z-index: 1
}
.search-active #page-container > *:not(#global-header) {
   -webkit-filter: blur(5px);
   filter: blur(5px);
}
.search-active #global-header .search-suggestions {
   transform: perspective(500px) rotateX(0);
}
.search-active #page-container > .search-overlay {
   display: block;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   background: rgba(0, 0, 0, .4);
   z-index: 9999;
   height: 100%;
}
@media (max-width: 768px) {
   .search-active #global-header nav .wrapper {
      transform: perspective(500px) rotateX(-90deg)
   }
}
#global-header .top-nav {
   color: #888;
   height: 42px;
   background-color: #fff;
   position: relative;
   z-index: 1;
}

@media (max-width: 768px) {
   #global-header .top-nav {
      background-color: #E60012;
      color: #fff;
      border: none;
      height: 45px;
   }
}

#global-header .top-nav .wrapper {
   display: flex;
   flex-wrap: nowrap;
   padding-left: 180px;
   position: relative;
   align-items: center;
   padding-right: 15px;
}

@media (max-width: 768px) {
   #global-header .top-nav .wrapper {
      padding-left: 15px;
   }
}

#global-header .top-nav a.logo-nintendo {
   background-color: #E60012;
   width: 180px;
   height: 110px;
   text-align: center;
   padding-top: 53px;
   position: absolute;
   left: 0;
   top: 0;
   z-index: 2;
   display: block;
   transform: translateY(-26px);
   transition: transform 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
   will-change: transform;
   border-radius: 0 0 15px 15px;
   box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2)
}

#global-header .top-nav a.logo-nintendo:hover {
   transform: translateY(-10px);
   transition: transform 250ms cubic-bezier(0.175, 0.885, 0.32, 1.275)
}

@media (max-width: 1286px) {
   #global-header .top-nav a.logo-nintendo {
      border-radius: 0 0 15px 0
   }
}

@media (max-width: 768px) {
   #global-header .top-nav a.logo-nintendo {
      width: auto;
      height: 45px;
      padding: 0;
      transform: none;
      transition: none;
      border-radius: 0;
      position: relative;
      box-shadow: none;
      display: -ms-inline-flexbox;
      display: inline-flex
   }
   #global-header .top-nav a.logo-nintendo:hover {
      transform: none;
      transition: none
   }
   #global-header .top-nav a.logo-nintendo img {
      width: 82px;
      height: 100%;
   }
}

#global-header .top-nav .search-toggle {
   display: -ms-flexbox;
   display: flex;
   -ms-flex-align: center;
   align-items: center;
   margin-right: 15px;
   cursor: pointer;
   position: relative
}

#global-header .top-nav .search-toggle span {
   margin-right: 6px;
   color: inherit;
   transition: transform 300ms ease-in-out, color 200ms ease-in-out;
   transform-origin: center top;
}

#global-header .top-nav .search-toggle svg {
   fill: #888;
   transition: fill 200ms ease-in-out;
}

@media (max-width: 768px) {
   #global-header .top-nav .search-toggle svg {
      fill: #fff
   }
}

#global-header .top-nav .search-toggle svg circle {
   transform: scale(0);
   transform-origin: center center;
   transition: transform 400ms cubic-bezier(0.61, -0.135, 0.735, 0.045)
}

@media (max-width: 768px) {
   #global-header .top-nav .search-toggle svg circle {
      display: none
   }
}

#global-header .top-nav .search-toggle .close-x {
   position: absolute;
   left: 18px;
   top: 12px;
   display: block;
   transform: rotateX(90deg);
   transform-origin: center bottom;
   transition: transform 300ms ease-in-out
}

#global-header .top-nav .search-toggle:hover span {
   color: #00d2be
}

#global-header .top-nav .search-toggle:hover svg {
   fill: #00d2be
}

#global-header .top-nav a.change-region {
   font-size: 1em;
   color: inherit;
   height: 42px;
   line-height: 42px;
   margin-right: 15px;
   width: 133px;
   background-position: right center;
   background-repeat: no-repeat;
   background-size: 32px 21px;
   transition: color 200ms ease-in-out;
}

@media (min-width: 769px) {
   #global-header .top-nav a.change-region:hover {
      color: #00d2be;
   }
}

body:lang(en) #global-header .top-nav a.change-region {
   background-image: url('/images/global/navigation/icons/us-flag.svg');
}

body:lang(en-CA) #global-header .top-nav a.change-region {
   background-image: url('/images/global/navigation/icons/ca-flag.svg');
}

body:lang(fr-CA) #global-header .top-nav a.change-region {
   background-image: url('/images/global/navigation/icons/ca-flag.svg');
   width: 150px;
}

body:lang(es-LA) #global-header .top-nav a.change-region {
   background-image: url('/images/global/navigation/icons/icon-change-region.svg');
   background-size: 24px;
   width: 126px;
}

@media (max-width: 768px) {
   #global-header .top-nav a.change-region {
      height: 45px;
      width: 32px;
      line-height: 45px;
      font-size: 0;
   }
   body:lang(es-LA) #global-header .top-nav a.change-region {
      width: 24px;
      background-image: url('/images/global/navigation/icons/icon-change-region-white.svg');
   }
}

@media (min-width: 641px) {
   #global-header alps-account-nav {
      min-width: 120px;
   }
}


.alps-is-loggedin #global-header alps-account-nav {
   min-width: 0;
}

#global-header .top-nav alps-account-nav .alps-account-nav .alps-account-name, #global-header .top-nav alps-account-nav .alps-account-nav .alps-login-door .alps-login-door-button .alps-login-door-title {
   font-family: "LatoRegular";
   font-size: 14px;
   font-weight: normal
}

#global-header .top-nav alps-account-nav .alps-login-door .alps-login-door-button .alps-login-door-title.is-mb {
   margin-top: 5px
}

@media (max-width: 768px) {
   #global-header .top-nav alps-account-nav .alps-icon-guest .vector-icon {
      fill: #fff
   }
   #global-header .top-nav alps-account-nav .alps-login-door .alps-login-door-button .alps-login-door-title {
      color: #fff
   }
   #global-header .top-nav alps-account-nav .alps-account-nav .alps-account-name {
      color: #fff;
   }
}

#global-header nav {
   background: linear-gradient(#f5f5f5, #dadada);
   display: block;
   width: 100%;
   height: 30px;
   position: relative;
   margin: 0 auto;
   z-index: 0;
}

@media (max-width: 768px) {
   #global-header nav {
      background: #fff;
      height: 40px
   }
}

#global-header nav .wrapper {
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: nowrap;
   flex-wrap: nowrap;
   padding-left: 180px;
   position: relative;
   z-index: 0;
   transform-origin: center bottom;
   transition: transform 300ms ease-in-out
}

@media (max-width: 768px) {
   #global-header nav .wrapper {
      padding-left: 0
   }
}

#global-header nav .wrapper a {
   display: block;
   width: calc(100% / 7);
   height: 100%;
   line-height: 30px;
   transition: color 0.3s, background 0.3s;
   color: #888;
   font-size: 14px;
   -webkit-text-size-adjust: 100%;
   cursor: pointer;
   text-align: center
}

body:lang(fr-CA) #global-header nav .wrapper a {
   width: calc(100% / 6);
}

body:lang(es-LA) #global-header nav .wrapper a {
   width: calc(100% / 5);
}

@media (max-width: 860px) {
   #global-header nav .wrapper a {
      font-size: 12px
   }
}

@media (max-width: 768px) {
   #global-header nav .wrapper a {
      font-size: 14px;
      color: #8C8C8C;
      line-height: 40px;
      height: 40px;
      width: 25% !important;
   }
   #global-header nav .wrapper a svg {
      height: 100%;
   }
   #global-header nav .wrapper a[data-section="wiiu"] {
      width: 22.5% !important;
   }
   #global-header nav .wrapper a[data-section="threeds"] {
      width: 27.5% !important;
   }

   body:lang(es-LA) #global-header nav .wrapper a {
      width: calc(100% / 3) !important;
   }
}

@media (max-width: 400px) {
   #global-header nav .wrapper a {
      font-size: 12px
   }
}

#global-header nav .wrapper a.highlight {
   background: #848484;
   color: #fff
}
#global-header nav .wrapper a:hover {
   color: #fff
}

#global-header nav .wrapper a[data-section="additional"] {
   -ms-flex-pack: center;
   justify-content: center
}

#global-header nav .wrapper a[data-section="additional"] svg {
   width: 40px
}

#global-header nav .wrapper a[data-section="additional"]:hover, #global-header.additional nav .wrapper a[data-section="additional"] {
   background: #484848 !important;
   color: #fff;
}

#global-header nav .wrapper a[data-section="additional"]:hover svg, #global-header.additional nav .wrapper a[data-section="additional"] svg {
   fill: #fff
}

#global-header nav .wrapper a[data-section="wiiu"]:hover, #global-header.wiiu nav .wrapper a[data-section="wiiu"] {
   background: #0096C8 !important;
   color: #fff;
}

#global-header nav .wrapper a[data-section="threeds"]:hover, #global-header.threeds nav .wrapper a[data-section="threeds"] {
   background: #CE181E !important;
   color: #fff;
}

#global-header nav .wrapper a[data-section="gamestore"]:hover, #global-header.gamestore nav .wrapper a[data-section="gamestore"] {
   background: #FF7D00 !important;
   color: #fff;
}

#global-header nav .wrapper a[data-section="mynintendo"]:hover, #global-header.mynintendo nav .wrapper a[data-section="mynintendo"] {
   background: #fff !important;
   color: #484848 !important;
}

#global-header nav .wrapper a[data-section="playnintendo"]:hover, #global-header.playnintendo nav .wrapper a[data-section="playnintendo"] {
   background: #FF3F3F !important;
   color: #fff;
}

#global-header nav .wrapper a[data-section="support"]:hover, #global-header.support nav .wrapper a[data-section="support"] {
   background: #00BFF3 !important;
   color: #fff;
}

#global-header nav .wrapper a[data-section="amiibo"]:hover, #global-header.amiibo nav .wrapper a[data-section="amiibo"] {
   background: #fff !important;
   color: #484848 !important
}

#global-header .expanded-nav-container {
   display: none;
   position: relative;
   z-index: 0;
}

#global-header .expanded-nav-container .backdrop {
   position: absolute;
   left: 0;
   top: 0;
   height: 0;
   background: #fff;
   width: 100%
}

#global-header .expanded-nav-container.show {
   display: block
}

#global-header .expanded-nav-container .wrapper {
   position: relative;
   white-space: nowrap
}

@media (max-width: 768px) {
   #global-header .expanded-nav-container .wrapper {
      white-space: normal;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
      flex-direction: column;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap
   }
}

#global-header .expanded-nav-container .line-art {
   position: absolute
}

@keyframes hover {
   0% { transform: translateY(-15px); }
   50% { transform: translateY(15px); }
   100% { transform: translateY(-15px); }
}

@keyframes sway {
   0% { transform: translateX(-15px); }
   50% { transform: translateX(15px); }
   100% { transform: translateX(-15px); }
}

@keyframes grow {
   0% { transform: scale(1); }
   50% { transform: scale(1.1); }
   100% { transform: scale(1); }
}

@keyframes rock {
   0% { transform: rotate(0); }
   10% { transform: rotate(0); }
   50% { transform: rotate(-25deg); }
   60% { transform: rotate(-25deg); }
   100% { transform: rotate(0); }
}

@keyframes toadsLeft {
   0% { transform: translateX(0); }
   50% { transform: translateX(-15px); }
   100% { transform: translateX(0); }
}

@keyframes toadsMiddle {
   0% { transform: rotate(-5deg); }
   50% { transform: rotate(5deg); }
   100% { transform: rotate(-5deg); }
}

@keyframes toadsRight {
   0% { transform: translateY(0); }
   50% { transform: translateY(15px); }
   100% { transform: translateY(0); }
}

#global-header .expanded-nav-container .line-art-hover {
   animation: hover 5s infinite cubic-bezier(0.49, 0, 0.41, 0.99);
}

#global-header .expanded-nav-container .line-art-rock {
   animation: rock 5s infinite linear;
}

#global-header .expanded-nav-container .line-art-grow {
   animation: grow 3s infinite cubic-bezier(0.1, 0.55, 0.23, 0.88);
}

#global-header .expanded-nav-container .line-art-sway {
   animation: sway 5s infinite cubic-bezier(0.49, 0, 0.41, 0.99);
}

@media (max-width: 768px) {
   #global-header .expanded-nav-container .line-art {
      display: none
   }
}

#global-header .expanded-nav-container>div[class*="expanded-nav"] {
   opacity: 0;
   pointer-events: none;
   z-index: 0;
   position: relative;
   padding: 2.5rem 1rem;
   transition: opacity 200ms linear 100ms;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   overflow: hidden
}

@media (max-width: 768px) {
   #global-header .expanded-nav-container>div[class*="expanded-nav"] {
      padding: .5rem 0
   }
}

#global-header .expanded-nav-container>div[class*="expanded-nav"].active {
   opacity: 1;
   pointer-events: auto;
   z-index: 1;
   animation: fade-in .3s
}

#global-header .expanded-nav-container>div[class*="expanded-nav"] a {
   border-radius: 20px;
   height: 0;
   position: relative;
   overflow: hidden;
   z-index: 1;
   color: #fff
}

@media (max-width: 768px) {
   #global-header .expanded-nav-container>div[class*="expanded-nav"] a {
      border-radius: 2px
   }
}

#global-header .expanded-nav-container>div[class*="expanded-nav"] a::before, #global-header .expanded-nav-container>div[class*="expanded-nav"] a .bg-layer {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%
}

#global-header .expanded-nav-container>div[class*="expanded-nav"] a .bg-layer {
   z-index: 0;
   transition: transform 300ms ease-in-out;
   transform-origin: center center;
   background-position: center bottom;
   background-size: contain;
   background-repeat: no-repeat
}

@media (max-width: 768px) {
   #global-header .expanded-nav-container>div[class*="expanded-nav"] a .bg-layer {
      display: none
   }
}

#global-header .expanded-nav-container>div[class*="expanded-nav"] a::before {
   content: '';
   z-index: 1;
   background-color: rgba(0, 0, 0, 0.3);
   display: none
}

@media (min-width: 769px) {
   #global-header .expanded-nav-container>div[class*="expanded-nav"] a:hover::before {
      display: block
   }
   #global-header .expanded-nav-container>div[class*="expanded-nav"] a:hover .bg-layer {
      -webkit-filter: blur(5px);
      filter: blur(5px);
      transform: scale3d(1.15, 1.15, 1)
   }
   #global-header .expanded-nav-container>div[class*="expanded-nav"] a:hover .link-title {
      transform: scale3d(1.06, 1.06, 1) translateY(3em)
   }
   #global-header .expanded-nav-container>div[class*="expanded-nav"] a:hover .link-copy {
      transform: translateY(-50%)
   }
}

#global-header .expanded-nav-container>div[class*="expanded-nav"] a .link-title, #global-header .expanded-nav-container>div[class*="expanded-nav"] a .link-copy {
   position: absolute;
   z-index: 2;
   text-align: center;
   transition: transform 300ms ease-in-out
}

#global-header .expanded-nav-container>div[class*="expanded-nav"] a .link-title {
   text-align: center;
   top: 8%;
   width: 100%
}

@media (max-width: 768px) {
   #global-header .expanded-nav-container>div[class*="expanded-nav"] a .link-title {
      top: 50%;
      transform: translateY(-50%)
   }
}

#global-header .expanded-nav-container>div[class*="expanded-nav"] a .link-copy {
   bottom: 1.5em;
   width: 86%;
   left: 7%;
   font-size: .54em
}

@media (max-width: 768px) {
   #global-header .expanded-nav-container>div[class*="expanded-nav"] a .link-copy {
      display: none
   }
}

#global-header .expanded-nav-container>div[class*="expanded-nav"] a[class*="buynow"] {
   background-color: #F7A324 !important
}

@media (min-width: 769px) {
   #global-header .expanded-nav-container>div[class*="expanded-nav"] a[class*="buynow"]:hover {
      box-shadow: 0 0 0 4px #f9be66
   }

   #global-header .expanded-nav-container>div[class*="expanded-nav"] a[class*="buynow"]:hover::before {
      display: none
   }

   #global-header .expanded-nav-container>div[class*="expanded-nav"] a[class*="buynow"] .link-title:hover {
      transform: translateY(-50%)
   }
}

#global-header .expanded-nav-container>div[class*="expanded-nav"] a[class*="buynow"] .link-title {
   top: 50%;
   transform: translateY(-50%)
}



/* start */
@media (max-width: 768px) {
   #global-header .expanded-nav-container>div[class*="expanded-nav"] a[class*="buynow"] {
      padding-bottom: 12% !important;
      width: calc(100% - (1.333% * 2)) !important
   }
}

#global-header .expanded-nav-container>div[class*="expanded-nav"] .main-tiles {
   display: inline-block;
   white-space: normal;
   vertical-align: top;
   white-space: normal;
   width: 23%;
   margin: 0 1%
}

@media (max-width: 768px) {
   #global-header .expanded-nav-container>div[class*="expanded-nav"] .main-tiles {
      width: 100%;
      margin: 0;
      padding: 1.333vw 1.333% 2.666vw
   }
}

#global-header .expanded-nav-container>div[class*="expanded-nav"] .main-tiles>a {
   width: 100%;
   padding-bottom: 198.325%;
   margin: 0;
   font-size: 30px;
   display: block
}

@media (max-width: 980px) {
   #global-header .expanded-nav-container>div[class*="expanded-nav"] .main-tiles>a {
      font-size: 25px
   }
}

@media (max-width: 800px) {
   #global-header .expanded-nav-container>div[class*="expanded-nav"] .main-tiles>a {
      font-size: 23px
   }
}

@media (max-width: 768px) {
   #global-header .expanded-nav-container>div[class*="expanded-nav"] .main-tiles>a {
      padding-bottom: 33.1% !important;
      margin: 0 !important;
      font-size: 30px
   }
   #global-header .expanded-nav-container>div[class*="expanded-nav"] .main-tiles>a .link-title {
      top: 80%
   }
}

#global-header .expanded-nav-container>div[class*="expanded-nav"] .main-tiles>a+a {
   padding-bottom: 34%;
   margin: 0
}

#global-header .expanded-nav-container>div[class*="expanded-nav"] .small-tiles {
   display: inline-block;
   white-space: normal;
   width: 75%;
   vertical-align: top;
   font-size: 0;
}

@media (max-width: 980px) {
   #global-header .expanded-nav-container>div[class*="expanded-nav"] .small-tiles>a {
      font-size: 16px
   }
}

@media (max-width: 800px) {
   #global-header .expanded-nav-container>div[class*="expanded-nav"] .small-tiles>a {
      font-size: 14px
   }
}

@media (max-width: 768px) {
   #global-header .expanded-nav-container>div[class*="expanded-nav"] .small-tiles>a {
      font-size: 20px;
   }
   #global-header .expanded-nav-container>div[class*="expanded-nav"] .small-tiles {
      width: 100%;
   }
}

#global-header .expanded-nav-container>div[class*="expanded-nav"] .small-tiles>a {
   width: calc((100% / 3) - (1.333% * 2));
   padding-bottom: 29.05%;
   margin: 0 1.333% 2.666%;
   display: inline-block;
   vertical-align: top;
   font-size: 20px;
}

#global-header .expanded-nav-container>div[class*="expanded-nav"] .small-tiles>a:nth-child(n+4) {
   margin-bottom: 0
}

@media (max-width: 768px) {
   #global-header .expanded-nav-container>div[class*="expanded-nav"] .small-tiles>a {
      width: calc(50% - (1.333% * 2));
      padding-bottom: 21.225%
   }
   #global-header .expanded-nav-container>div[class*="expanded-nav"] .small-tiles>a:nth-child(n+4) {
      margin-bottom: 2.666%
   }
}

#global-header .expanded-nav-container .expanded-nav-wiiu {
   background: #0196D1
}

#global-header .expanded-nav-container .expanded-nav-wiiu img.mario-running {
   left: -245px;
   top: 140px
}

#global-header .expanded-nav-container .expanded-nav-wiiu img.mushroom {
   top: 330px;
   left: calc(100% + 120px)
}

#global-header .expanded-nav-container .expanded-nav-wiiu img.question-block {
   left: calc(100% + 50px);
   top: 130px
}

#global-header .expanded-nav-container .expanded-nav-wiiu img.goomba {
   left: calc(100% - 30px);
   top: 280px;
   animation-delay: 3s
}

#global-header .expanded-nav-container .expanded-nav-wiiu .main-tiles>a:first-child {
   padding-bottom: 156.33%;
   margin: 0 0 8%;
}

#global-header .expanded-nav-container .expanded-nav-wiiu a {
   background: #3cb1d9
}

@media (min-width: 769px) {
   #global-header .expanded-nav-container .expanded-nav-wiiu a:hover {
      box-shadow: 0 0 0 4px #3cb1d9
   }
}

#global-header .expanded-nav-container .expanded-nav-wiiu a.wiiu-whatis .bg-layer {
   background-image: url("/images/global/navigation/wiiu/what-is-wiiu.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-wiiu a.wiiu-whatis .bg-layer {
      background-image: url("/images/global/navigation/wiiu/what-is-wiiu@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-wiiu a.wiiu-games .bg-layer {
   background-image: url("/images/global/navigation/wiiu/games.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-wiiu a.wiiu-games .bg-layer {
      background-image: url("/images/global/navigation/wiiu/games@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-wiiu a.wiiu-features .bg-layer {
   background-image: url("/images/global/navigation/wiiu/features.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-wiiu a.wiiu-features .bg-layer {
      background-image: url("/images/global/navigation/wiiu/features@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-wiiu a.wiiu-software .bg-layer {
   background-image: url("/images/global/navigation/wiiu/built-in-software.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-wiiu a.wiiu-software .bg-layer {
      background-image: url("/images/global/navigation/wiiu/built-in-software@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-wiiu a.wiiu-accessories .bg-layer {
   background-image: url("/images/global/navigation/wiiu/accessories.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-wiiu a.wiiu-accessories .bg-layer {
      background-image: url("/images/global/navigation/wiiu/accessories@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-wiiu a.wiiu-home .bg-layer {
   background-image: url("/images/global/navigation/wiiu/wiiu.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-wiiu a.wiiu-home .bg-layer {
      background-image: url("/images/global/navigation/wiiu/wiiu@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-wiiu a.wiiu-faq .bg-layer {
   background-image: url("/images/global/navigation/faq.png")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-wiiu a.wiiu-faq .bg-layer {
      background-image: url("/images/global/navigation/faq@2x.png")
   }
}

#global-header .expanded-nav-container .expanded-nav-wiiu a img.hide-large {
   width: 50%;
   position: absolute;
   top: 10%;
   left: 25%
}

#global-header .expanded-nav-container .expanded-nav-threeds {
   background: #CE181E
}

@media (max-width: 768px) {
   body:lang(es-LA) #global-header .expanded-nav-container .expanded-nav-threeds .threeds-home .link-title {
      font-size: 0.6em;
   }
}

#global-header .expanded-nav-container .expanded-nav-threeds img.peach {
   top: 10px;
   left: -310px;
   animation-delay: 1s
}

#global-header .expanded-nav-container .expanded-nav-threeds img.pipe {
   top: 390px;
   left: calc(100% + 20px)
}

#global-header .expanded-nav-container .expanded-nav-threeds img.luigi {
   top: 10px;
   left: 100%
}

#global-header .expanded-nav-container .expanded-nav-threeds a {
   background: #ff0008
}

@media (min-width: 769px) {
   #global-header .expanded-nav-container .expanded-nav-threeds a:hover {
      box-shadow: 0 0 0 4px #ff0008
   }
}

#global-header .expanded-nav-container .expanded-nav-threeds a.threeds-home .bg-layer {
   background-image: url("/images/global/navigation/threeds/3ds.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-threeds a.threeds-home .bg-layer {
      background-image: url("/images/global/navigation/threeds/3ds@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-threeds a.threeds-whatis .bg-layer {
   background-image: url("/images/global/navigation/threeds/what-is-nintendo-3ds.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-threeds a.threeds-whatis .bg-layer {
      background-image: url("/images/global/navigation/threeds/what-is-nintendo-3ds@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-threeds a.threeds-whatis2ds .bg-layer {
   background-image: url("/images/global/navigation/threeds/what-is-nintendo-2ds.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-threeds a.threeds-whatis2ds .bg-layer {
      background-image: url("/images/global/navigation/threeds/what-is-nintendo-2ds@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-threeds a.threeds-games .bg-layer {
   background-image: url("/images/global/navigation/threeds/games.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-threeds a.threeds-games .bg-layer {
      background-image: url("/images/global/navigation/threeds/games@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-threeds a.threeds-features .bg-layer {
   background-image: url("/images/global/navigation/threeds/features.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-threeds a.threeds-features .bg-layer {
      background-image: url("/images/global/navigation/threeds/features@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-threeds a.threeds-software .bg-layer {
   background-image: url("/images/global/navigation/threeds/built-in-software.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-threeds a.threeds-software .bg-layer {
      background-image: url("/images/global/navigation/threeds/built-in-software@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-threeds a.threeds-threeds .bg-layer {
   background-image: url("/images/global/navigation/threeds/3ds.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-threeds a.threeds-threeds .bg-layer {
      background-image: url("/images/global/navigation/threeds/3ds@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-threeds a.threeds-faq .bg-layer {
   background-image: url("/images/global/navigation/faq.png")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-threeds a.threeds-faq .bg-layer {
      background-image: url("/images/global/navigation/faq@2x.png")
   }
}

#global-header .expanded-nav-container .expanded-nav-threeds a img.hide-large {
   width: 32%;
   position: absolute;
   left: 34%;
   bottom: 38%
}

#global-header .expanded-nav-container .expanded-nav-threeds .main-tiles>a:first-child {
   padding-bottom: 156.33%;
   margin: 0 0 8%;
}

#global-header .expanded-nav-container .expanded-nav-gamestore {
   background: #FF7D00
}

#global-header .expanded-nav-container .expanded-nav-gamestore img.brick {
   top: 100px;
   left: -140px
}

#global-header .expanded-nav-container .expanded-nav-gamestore img.bobomb {
   left: -210px;
   top: 250px
}

#global-header .expanded-nav-container .expanded-nav-gamestore img.bowser {
   top: 50px;
   left: calc(100% - 60px)
}

#global-header .expanded-nav-container .expanded-nav-gamestore a {
   background: #F7A324
}

@media (min-width: 769px) {
   #global-header .expanded-nav-container .expanded-nav-gamestore a:hover {
      box-shadow: 0 0 0 4px #F7A324
   }
}

#global-header .expanded-nav-container .expanded-nav-gamestore a.games-wiiu .bg-layer {
   background-image: url("/images/global/navigation/gamestore/wiiu-games.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-gamestore a.games-wiiu .bg-layer {
      background-image: url("/images/global/navigation/gamestore/wiiu-games@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-gamestore a.games-threeds .bg-layer {
   background-image: url("/images/global/navigation/gamestore/nintendo-3ds-games.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-gamestore a.games-threeds .bg-layer {
      background-image: url("/images/global/navigation/gamestore/nintendo-3ds-games@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-gamestore a.games-all .bg-layer {
   background-image: url("/images/global/navigation/gamestore/all-games.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-gamestore a.games-all .bg-layer {
      background-image: url("/images/global/navigation/gamestore/all-games@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-gamestore a.games-miitomo .bg-layer {
   background-image: url("/images/global/navigation/gamestore/miitomo.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-gamestore a.games-miitomo .bg-layer {
      background-image: url("/images/global/navigation/gamestore/miitomo@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-gamestore a.games-sales-and-offers .bg-layer {
   background-image: url("/images/global/navigation/gamestore/sales-and-offers.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-gamestore a.games-sales-and-offers .bg-layer {
      background-image: url("/images/global/navigation/gamestore/sales-and-offers@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-gamestore a.games-coming-soon .bg-layer {
   background-image: url("/images/global/navigation/gamestore/star.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-gamestore a.games-coming-soon .bg-layer {
      background-image: url("/images/global/navigation/gamestore/star@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-gamestore a.games-games .bg-layer {
   background-image: url("/images/global/navigation/gamestore/game-store.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-gamestore a.games-games .bg-layer {
      background-image: url("/images/global/navigation/gamestore/game-store@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-gamestore a img.hide-large {
   position: absolute;
   width: 16%;
   height: 48%;
   bottom: 43%;
   left: 42%
}

#global-header .expanded-nav-container .expanded-nav-amiibo {
   background: #fff url(/images/global/navigation/amiibo/bg-amiibo.png)
}

#global-header .expanded-nav-container .expanded-nav-amiibo .main-tiles>a:first-child {
   padding-bottom: 156.33%;
   margin: 0 0 8%;
}

#global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-whatis {
   background: #e6001e
}

@media (min-width: 769px) {
   #global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-whatis:hover {
      box-shadow: 0 0 0 4px #e6001e
   }
}

#global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-whatis .bg-layer {
   background-image: url("/images/global/navigation/amiibo/what-is-amiibo.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-whatis .bg-layer {
      background-image: url("/images/global/navigation/amiibo/what-is-amiibo@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-games {
   background: #a5c80f
}

@media (min-width: 769px) {
   #global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-games:hover {
      box-shadow: 0 0 0 4px #a5c80f
   }
}

#global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-games .bg-layer {
   background-image: url("/images/global/navigation/amiibo/games.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-games .bg-layer {
      background-image: url("/images/global/navigation/amiibo/games@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-lineup {
   background: #25adf3
}

@media (min-width: 769px) {
   #global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-lineup:hover {
      box-shadow: 0 0 0 4px #25adf3
   }
}

#global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-lineup .bg-layer {
   background-image: url("/images/global/navigation/amiibo/lineup.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-lineup .bg-layer {
      background-image: url("/images/global/navigation/amiibo/lineup@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-compatibility {
   background: #009682
}

@media (min-width: 769px) {
   #global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-compatibility:hover {
      box-shadow: 0 0 0 4px #009682
   }
}

#global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-compatibility .bg-layer {
   background-image: url("/images/global/navigation/amiibo/compatibility.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-compatibility .bg-layer {
      background-image: url("/images/global/navigation/amiibo/compatibility@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-home {
   background: #25adf3
}

#global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-home:hover {
   box-shadow: 0 0 0 4px #25adf3
}

#global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-home .bg-layer {
   background-image: url("/images/global/navigation/amiibo/mario-amiibo.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-home .bg-layer {
      background-image: url("/images/global/navigation/amiibo/mario-amiibo@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-faq {
   background: #e62d8c
}

@media (min-width: 769px) {
   #global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-faq:hover {
      box-shadow: 0 0 0 4px #e62d8c
   }
}

#global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-faq .bg-layer {
   background-image: url("/images/global/navigation/faq.png")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-amiibo a.amiibo-faq .bg-layer {
      background-image: url("/images/global/navigation/faq@2x.png")
   }
}

#global-header .expanded-nav-container .expanded-nav-playnintendo {
   background: #FF3F3F
}

#global-header .expanded-nav-container .expanded-nav-playnintendo img.mario-and-yoshi {
   left: calc(100% - 45px);
   top: 115px;
   animation-delay: 4s
}

#global-header .expanded-nav-container .expanded-nav-playnintendo img.lakitu {
   top: 50px;
   left: -140px
}

#global-header .expanded-nav-container .expanded-nav-playnintendo img.spiny {
   top: 310px;
   left: -180px;
   animation-delay: 1s
}

#global-header .expanded-nav-container .expanded-nav-playnintendo img.goomba {
   top: 330px;
   left: calc(100% - 200px);
   animation-delay: 3s
}

#global-header .expanded-nav-container .expanded-nav-playnintendo img.bobomb {
   top: 310px;
   left: calc(100% - 420px);
   animation-delay: 2s
}

#global-header .expanded-nav-container .expanded-nav-playnintendo a {
   background: #fa6a6a
}

@media (min-width: 769px) {
   #global-header .expanded-nav-container .expanded-nav-playnintendo a:hover {
      box-shadow: 0 0 0 4px #fa6a6a
   }
}

#global-header .expanded-nav-container .expanded-nav-playnintendo a.playnintendo-home .bg-layer {
   background-image: url("/images/global/navigation/playnintendo/play-nintendo.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-playnintendo a.playnintendo-home .bg-layer {
      background-image: url("/images/global/navigation/playnintendo/play-nintendo@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-playnintendo a.playnintendo-friends .bg-layer {
   background-image: url("/images/global/navigation/playnintendo/donkey-kong-diddy-kong.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-playnintendo a.playnintendo-friends .bg-layer {
      background-image: url("/images/global/navigation/playnintendo/donkey-kong-diddy-kong@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-playnintendo a.playnintendo-explore .bg-layer {
   background-image: url("/images/global/navigation/playnintendo/lakitu.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-playnintendo a.playnintendo-explore .bg-layer {
      background-image: url("/images/global/navigation/playnintendo/lakitu@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-playnintendo a.playnintendo-news .bg-layer {
   background-image: url("/images/global/navigation/playnintendo/peach.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-playnintendo a.playnintendo-news .bg-layer {
      background-image: url("/images/global/navigation/playnintendo/peach@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-playnintendo a.playnintendo-parents .bg-layer {
   background-image: url("/images/global/navigation/playnintendo/baby-mario-and-yoshi.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-playnintendo a.playnintendo-parents .bg-layer {
      background-image: url("/images/global/navigation/playnintendo/baby-mario-and-yoshi@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-playnintendo a.playnintendo-group .bg-layer {
   background-image: url("/images/global/navigation/playnintendo/play-nintendo.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-playnintendo a.playnintendo-group .bg-layer {
      background-image: url("/images/global/navigation/playnintendo/play-nintendo@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-mynintendo a img, #global-header .expanded-nav-container .expanded-nav-support a img {
   position: absolute;
   top: 50%;
   left: 50%;
   height: 111px;
   transform: translate(-50%, -30%);
   transition: transform 0.4s ease-out
}
#global-header .expanded-nav-container .expanded-nav-mynintendo a.mynintendo-rewards img {
   width: 100%;
   height: 142px;
   top: 43%;
}
#global-header .expanded-nav-container .expanded-nav-mynintendo a.mynintendo-missions img {
   width: 100%;
   height: 135px;
   top: 46%;
}

@media (min-width: 769px) {
   #global-header .expanded-nav-container .expanded-nav-mynintendo a:hover img,
   #global-header .expanded-nav-container .expanded-nav-support a:hover img {
      transform: translate(-50%, -30%) scale(1.15);
      filter: blur(5px);
      -webkit-filter: blur(5px)
   }
}

#global-header .expanded-nav-container .expanded-nav-support {
   background: #00BFF3
}

#global-header .expanded-nav-container .expanded-nav-support img.question-block {
   left: -160px;
   top: 110px
}

#global-header .expanded-nav-container .expanded-nav-support img.goomba-1 {
   left: -110px;
   top: 250px
}

#global-header .expanded-nav-container .expanded-nav-support img.goomba-2 {
   left: -220px;
   top: 330px;
   animation-delay: 1s
}

#global-header .expanded-nav-container .expanded-nav-support img.goomba-2 svg {
   width: 117px
}

#global-header .expanded-nav-container .expanded-nav-support img.toads-left {
   left: calc(100% - 70px);
   top: 200px;
   animation: toadsLeft 5s infinite cubic-bezier(0.49, 0, 0.41, 0.99)
}

#global-header .expanded-nav-container .expanded-nav-support img.toads-middle {
   left: calc(100% + 130px);
   top: 90px;
   animation: toadsMiddle 5s infinite cubic-bezier(0.49, 0, 0.41, 0.99);
   transform: rotate(-5deg);
}

#global-header .expanded-nav-container .expanded-nav-support img.toads-right {
   left: calc(100% + 270px);
   top: 180px;
   animation: toadsRight 5s infinite cubic-bezier(0.49, 0, 0.41, 0.99)
}

#global-header .expanded-nav-container .expanded-nav-support a {
   background: #55d4f7
}

@media (min-width: 769px) {
   #global-header .expanded-nav-container .expanded-nav-support a:hover {
      box-shadow: 0 0 0 4px #55d4f7
   }
}

#global-header .expanded-nav-container .expanded-nav-support a.support-wiiu img {
   width: 87%
}

#global-header .expanded-nav-container .expanded-nav-support a.support-threeds img {
   width: 77%
}

#global-header .expanded-nav-container .expanded-nav-support a.support-forums img {
   width: 42%
}

#global-header .expanded-nav-container .expanded-nav-support a.support-internet img {
   width: 42%;
   top: 47%
}

#global-header .expanded-nav-container .expanded-nav-support a.support-digital img {
   width: 50%
}

#global-header .expanded-nav-container .expanded-nav-support a.support-repair img {
   width: 41%
}

#global-header .expanded-nav-container .expanded-nav-support a.support-support .bg-layer {
   background-image: url("/images/global/navigation/support/mario.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-support a.support-support .bg-layer {
      background-image: url("/images/global/navigation/support/mario@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-mynintendo {
   background-color: #fff;
   background-image: radial-gradient(#efefef 25%, transparent 26%), radial-gradient(#efefef 25%, transparent 26%);
   background-size: 20px 20px;
   background-position: 0 0, 10px 10px
}

#global-header .expanded-nav-container .expanded-nav-mynintendo a {
   background: #e60012
}

@media (min-width: 769px) {
   #global-header .expanded-nav-container .expanded-nav-mynintendo a:hover {
      box-shadow: 0 0 0 4px #e60012
   }
}

#global-header .expanded-nav-container .expanded-nav-mynintendo a.mynintendo-points .bg-layer {
   background-image: url("/images/global/navigation/mynintendo/about-points.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-mynintendo a.mynintendo-points .bg-layer {
      background-image: url("/images/global/navigation/mynintendo/about-points@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-mynintendo a.mynintendo-home .bg-layer {
   background-image: url("/images/global/navigation/mynintendo/my-nintendo-mii.jpg")
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
   #global-header .expanded-nav-container .expanded-nav-mynintendo a.mynintendo-home .bg-layer {
      background-image: url("/images/global/navigation/mynintendo/my-nintendo-mii@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-mynintendo a img {
   width: 45%
}

#global-header .expanded-nav-container .expanded-nav-mynintendo a.mynintendo-whatis img {
   width: 58%
}

#global-header .expanded-nav-container .expanded-nav-additional {
   background: #484848
}

#global-header .expanded-nav-container .expanded-nav-additional a {
   padding-bottom: 31% !important;
   margin: 1.333% !important;
}

#global-header .expanded-nav-container .expanded-nav-additional a img {
   width: 30%;
   position: absolute;
   left: 35%;
   bottom: 33%;
   height: 54%
}

#global-header .expanded-nav-container .expanded-nav-additional a .link-title {
   bottom: 11%;
   top: initial !important;
   font-size: 18px;
   transform: none !important
}

#global-header .expanded-nav-container .expanded-nav-additional a.additional-my-nintendo img {
   width: 72%;
   height: 72%;
   left: 14%;
   top: 14%
}

#global-header .expanded-nav-container .expanded-nav-additional a.additional-amiibo {
   background-color: #25ADF3
}

#global-header .expanded-nav-container .expanded-nav-additional a.additional-support {
   background: #00BFF3
}

#global-header .expanded-nav-container .expanded-nav-additional a.additional-play-nintendo {
   background: #FF3F3F
}

#global-header .expanded-nav-container .expanded-nav-additional a.additional-my-nintendo {
   background: #E60012
}

.nclood-nav-spacer {
   height: 72px;
   pointer-events: none
}

@media (max-width: 768px) {
   .nclood-nav-spacer {
      height: 85px
   }
}

.header-overlay, .header-search-overlay {
   position: fixed;
   left: 0;
   top: 0;
   width: 100%;
   bottom: 0;
   opacity: 0;
   visibility: hidden;
   background: rgba(0, 0, 0, 0.4)
}

.header-overlay.active, .header-search-overlay.active {
   visibility: visible;
   opacity: 1;
   z-index: 2
}

.header-search-overlay {
   position: absolute;
   top: 40px;
   height: 31px
}

.header-overlay.active {
   z-index: 9999
}

footer#global-footer {
	width: 100%;
}
	nav.global-footer-top {
		background: #e7e7e7;
		background: -moz-linear-gradient(bottom, #e7e7e7 0%, #f9f9f9 75%);
		background: -webkit-linear-gradient(bottom, #e7e7e7 0%,#f9f9f9 75%);
		background: -o-linear-gradient(bottom, #e7e7e7 0%,#f9f9f9 75%);
		background: -ms-linear-gradient(bottom, #e7e7e7 0%,#f9f9f9 75%);
		background: linear-gradient(to top, #e7e7e7 0%,#f9f9f9 75%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7e7e7', endColorstr='#f9f9f9',GradientType=0 );
		padding: 20px 0;
	}
		nav.global-footer-top ul li {
			padding: 5px 0;
		}
			nav.global-footer-top a {
				color: #a0a0a0;
			}
				nav.global-footer-top a:hover {
					color: #484848;
					text-decoration: none;
				}

		nav.global-footer-top ul > li,
		nav.global-footer-top ul > li a {
			font-family: 'LatoBold';
			font-size: 16px;
		}

			nav.global-footer-top li.footer-icon-country {
				clear: none;
			}
			nav.global-footer-top li.footer-icon-country span.change {
				background-position: 0 -100px;
				display: inline;
			}

			nav.global-footer-top li.footer-icon-country span {
				background: url('/images/global/sprite-global-footer-flags.png') 0 0 no-repeat;
				display: inline-block;
				height: 12px;
				width: 16px;
			}

			body:lang(fr-CA) nav.global-footer-top li.footer-icon-country span,
			body:lang(en-CA) nav.global-footer-top li.footer-icon-country span {
				background-position: -60px 0;
			}

			nav.global-footer-top ul ul li,
			nav.global-footer-top ul ul li a {
				display: block;
				font-family: 'LatoRegular';
				font-size: 12px;
			}

			nav.global-footer-top ul a div {
				white-space: nowrap;
				display: inline;
			}


	section.global-footer-bottom {
		background: #989898;
		background: -moz-linear-gradient(top, #8c8a8a 0%, #989898 50%);
		background: -webkit-linear-gradient(top, #8c8a8a 0%,#989898 50%);
		background: -o-linear-gradient(top, #8c8a8a 0%,#989898 50%);
		background: -ms-linear-gradient(top, #8c8a8a 0%,#989898 50%);
		background: linear-gradient(to bottom, #8c8a8a 0%,#989898 50%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8c8a8a', endColorstr='#989898',GradientType=0 );
		color: #e2e2e2;
		height: auto;
		min-height: 145px;
		padding: 20px 0;
		text-align: center;
	}
		section.global-footer-bottom ul {
			margin-bottom: 15px;
		}
			section.global-footer-bottom ul li {
				display: inline-block;
				padding: 0 10px;
			}
				section.global-footer-bottom a {
					font-size: 14px;
					color: #e2e2e2;
				}
					section.global-footer-bottom a:hover {
						color: #fff;
					}

		section.global-footer-bottom a.icon-nintendo {
			display: block;
			height: 30px;
			margin: 30px auto;
			text-decoration: none;
			text-indent: -99999em;
			width: 120px;
		}
			section.global-footer-bottom a.icon-nintendo:before {
				color: #c1c1c1;
				font-size: 30px;
			}

		section.global-footer-bottom a.footer-logo-esrb {
			display: block;
			width: 60px;
		}

		section.global-footer-bottom ul.footer-social a {
			background: #fff;
			display: block;
			font-size: 38px;
			height: 34px;
			margin: 2px;
			padding: 5px;
			position: relative;
			text-decoration: none;
			text-indent: -99999em;
			width: 34px;
		}
		section.global-footer-bottom a.icon-facebook	{ color: #4b689f; }
		section.global-footer-bottom a.icon-twitter		{ color: #00aee8; }
		section.global-footer-bottom a.icon-youtube		{ color: #ce1721; }
		section.global-footer-bottom a.icon-tumblr		{ color: #2c4760; }
		section.global-footer-bottom a.icon-instagram	{
			color: #000;
			background: none!important;
		}

		section.global-footer-bottom ul.footer-social a:before {
			height: 35px;
			left: -2px;
			top: -2px;
			width: 35px;

		}

		section.global-footer-bottom ul.footer-copyright {
			font-size: 12px;
		}
			section.global-footer-bottom ul.footer-copyright li {
				display: inline-block;
				padding: 0;
			}

@media screen and (min-width: 769px) {
	a.back-to-top {
		display: none;
	}
}

@media screen and (min-width: 571px) and (max-width: 768px) {
	nav.global-footer-top ul > li.col4-tab {
		margin-right: 0;
	}
	section.global-footer-bottom {
		padding-bottom: 40px;
	}

}


@media screen and (max-width: 570px) {

	nav.global-footer-top {
		background: #fff;
		padding: 0;
	}
	nav.global-footer-top .wrapper {
		max-width: 100%;
	}
		nav.global-footer-top ul.accordion {
			border-bottom: none;
			margin-bottom: 0;
		}
		nav.global-footer-top ul li {
			padding: 0;
		}
			nav.global-footer-top a {
				color: #484848;
			}
				nav.global-footer-top a:hover {
					color: #3aa4ff;
				}
			nav.global-footer-top li.closed ul {
				display: block;
			}

		nav.global-footer-top ul > li,
		nav.global-footer-top ul > li a {
			font-family: 'LatoBold';
			font-size: 22px;
		}
			nav.global-footer-top div.wrapper > ul > li > a {
				background: #fafafa;
				border-bottom: 1px solid #dadada;
				border-top: 1px solid #dadada;
				color: #2576bc;
				display: block;
				min-height: 60px;
				padding: 20px 40px 20px 20px;
				position: relative;
			}
				nav.global-footer-top div.wrapper > ul > li > a:after {
					content: '\e60f';
					display: block;
					font-family: 'icons';
					font-size: 20px;
					position: absolute;
					right: 25px;
					top: 20px;
				}
				nav.global-footer-top div.wrapper > ul > li.footer-icon-country > a:after {
					display: none;
				}

				nav.global-footer-top li.footer-icon-country span.change {
					background-position: 0 -100px;
					display: inline;
				}

				nav.global-footer-top li.footer-icon-country div > span {
					background-position: 0 -8px;
					background-size: 30px;
					height: 22px;
					vertical-align: top;
					width: 30px;
				}

				nav.global-footer-top ul a div {
					display: inline;
				}

			nav.global-footer-top div.wrapper > ul > li.closed > a {
				border-bottom: none;
			}
				nav.global-footer-top div.wrapper > ul > li.closed > a:after {
					content: '\e60c';
				}
				nav.global-footer-top li.closed ul {
					display: none;
				}

			nav.global-footer-top ul ul {
				padding: 20px 20px 10px;
				display: none;
			}
				nav.global-footer-top ul ul li {
					margin-bottom: 15px;
				}
				nav.global-footer-top ul ul li,
				nav.global-footer-top ul ul li a,
				nav.global-footer-top ul ul li a:hover {
					font-family: 'LatoLight';
					font-size: 18px;
				}
				nav.global-footer-top ul ul li a:hover {
					text-decoration: underline;
				}

	section.global-footer-bottom {
		padding-bottom: 40px;
	}
		section.global-footer-bottom ul {
			margin-bottom: 20px;
		}
			section.global-footer-bottom ul.footer-links li {
				display: block;
				margin-bottom: 10px;
			}
		section.global-footer-bottom ul.footer-social {
			margin-bottom: 10px;
		}
			section.global-footer-bottom ul.footer-social li {
				padding: 0 7px;
			}
				section.global-footer-bottom a {
					font-size: 16px;
				}

		section.global-footer-bottom a.icon-nintendo {
			margin: 10px auto;
		}

		section.global-footer-bottom a.footer-logo-esrb {
			margin: 0 auto;
			width: 80px;
		}

		section.global-footer-bottom ul.footer-copyright {
			margin-top: 10px;
		}
			section.global-footer-bottom ul.footer-copyright li {
				display: block;
				font-size: 14px;
			}
				section.global-footer-bottom ul.footer-copyright li:last-child {
					margin-top: 10px;
				}
}


/*  Search Box oval  */
#global-header .search-toggle span .oval-text {
	display: none;
}
@media screen and (min-width: 900px) {
	#global-header .top-nav .search-toggle {
		padding: 0 1em;
	}

	#global-header .oval {
		position: absolute;
		top: 10%;
		left: 0;
		width: 100%;
		height: 80%;
		border: solid 1px #CCC;
		z-index: -1;
		border-radius: 20px;
		padding: 0 1em;
	}

	.search-active #global-header .top-nav .oval {
		display: none;
	}


	#global-header .search-toggle span .oval-text {
		display: inline-block;
	}
	
	.search-active #global-header .search-toggle span .oval-text {
		display: none;
	}
	

	#global-header .top-nav .search-toggle span {
		padding-right: 5em;
	}

	.search-active #global-header .top-nav span {
		padding-right: 0!important;
	}
}

 
/*	-----------------------------------
	Backgrounds
	----------------------------------- */
/* --- Gradient that stretches the browser width --- */
.container-gradient {
	position: relative;
}
	.container-gradient:before {
		background: url('/images/global/gradient/radial-f2-fff.png') center top no-repeat;
		background-size: 100%;
		background: -moz-radial-gradient(top, ellipse cover,  #f2f2f2 0%, rgba(255,255,255,0) 90%);
		background: -webkit-gradient(radial, center top, 0px, center top, 100%, color-stop(0%,#f2f2f2), color-stop(90%,rgba(255,255,255,0)));
		background: -webkit-radial-gradient(top, ellipse cover,  #f2f2f2 0%,rgba(255,255,255,0) 90%);
		background: -o-radial-gradient(top, ellipse cover,  #f2f2f2 0%,rgba(255,255,255,0) 90%);
		background: -ms-radial-gradient(top, ellipse cover,  #f2f2f2 0%,rgba(255,255,255,0) 90%);
		background: radial-gradient(ellipse at top,  #f2f2f2 0%, rgba(255,255,255,0) 90%);
		content: '';
		height: 150px;
		left: 0;
		position: absolute;
		width: 100%;
	}
	/* Gradient on main content */
	div#page-container.container-gradient:before {
		top: 180px;
	}
	/* Gradient on specific sections */	
	.container-gradient:before {
		top: 40px;
	}
		.container-gradient .page-content > .row {
			margin-bottom: 60px;
			padding-top: 25px;
		}

/* --- Gradient that is within content --- */
.content-gradient {
	background: url('/images/global/gradient/radial-f2-fff.png') center top no-repeat;
	background-size: 100%;
	background: -moz-radial-gradient(top, ellipse cover,  #f2f2f2 0%, #fff 50%);
	background: -webkit-gradient(radial, center top, 0px, center top, 100%, color-stop(0%,#f2f2f2), color-stop(50%,#fff));
	background: -webkit-radial-gradient(top, ellipse cover,  #f2f2f2 0%,#fff 50%);
	background: -o-radial-gradient(top, ellipse cover,  #f2f2f2 0%,#fff 50%);
	background: -ms-radial-gradient(top, ellipse cover,  #f2f2f2 0%,#fff 50%);
	background: radial-gradient(ellipse at top,  #f2f2f2 0%, #fff 50%);
	margin-bottom: 80px;
	padding-top: 25px;
	position: relative;
}

/* --- Gradient that is within content but stretches full browser width --- */
.content-gradient-before,
.content-gradient-after {
	position: relative;
}
	.content-gradient-before:before,
	.content-gradient-after:after {
		background: url('../images/global/gradient/radial-f2-fff.png') center top no-repeat;
		background-size: 100%;
		background: -moz-radial-gradient(top, ellipse cover,  #f2f2f2 0%, rgba(255,255,255,0) 90%);
		background: -webkit-gradient(radial, center top, 0px, center top, 100%, color-stop(0%,#f2f2f2), color-stop(90%,rgba(255,255,255,0)));
		background: -webkit-radial-gradient(top, ellipse cover,  #f2f2f2 0%,rgba(255,255,255,0) 90%);
		background: -o-radial-gradient(top, ellipse cover,  #f2f2f2 0%,rgba(255,255,255,0) 90%);
		background: -ms-radial-gradient(top, ellipse cover,  #f2f2f2 0%,rgba(255,255,255,0) 90%);
		background: radial-gradient(ellipse at top,  #f2f2f2 0%, rgba(255,255,255,0) 90%);
		content: '';
		height: 150px;
		left: -50%;
		position: absolute;
		right: -50%;
		width: 200%;
	}
	.content-gradient-before:before {
		top: 0;
	}
	.content-gradient-after:after {
		bottom: -155px;
	}

/*	-----------------------------------
	Platform Indicators
	----------------------------------- */

/* --- Border --- */
.threeDS {
	border-bottom: 3px solid #ce181e;
}
.WiiU {
	border-bottom: 3px solid #0096c8;
}
.iOSAndroid {
	border-bottom: 3px solid #000;
}
.Android {
	border-bottom: 3px solid #000;
}
.iOS {
	border-bottom: 3px solid #000;
}


.no-system {
	border-bottom: 3px solid #999;
}

/* --- Date with Border --- */
.date {
	border-bottom: 3px solid #dadada;
	color: #999;
	display: inline-block;
	font-size: 16px;
	font-family: 'LatoBold';
	padding-bottom: 5px;
}
	.threeDS .date,
	.date.threeDS {
		border-color: #ce181e;
	}
	.WiiU .date,
	.date.WiiU {
		border-color: #0096c8;
	}
	.iOSAndroid .date,
	.date.iOSAndroid {
		border-color: #000;
	}
	.Android .date,
	.date.Android {
		border-color: #000;
	}	
	.iOS .date,
	.date.iOS {
		border-color: #000;
	}	
	.no-system .date,
	.date.no-system {
		border-color: #999;
	}

/*	-----------------------------------
	Buttons
	----------------------------------- */
/* --- Default button --- */
.btn {
	background: #2576bc;
	border: 1px solid #1660a0;
	border-radius: 2px;
	color: #fff;
	display: inline-block;
	font-family: 'LatoBold';
	font-size: 20px;
	line-height: 28px;
	padding: 10px 0;
	text-align: center;
	text-decoration: none;
	width: 98%;
	margin-left: 1%;
	
		-webkit-transition: all 150ms ease-in-out;
		-moz-transition: all 150ms ease-in-out;
		-ms-transition: all 150ms ease-in-out;
		-o-transition: all 150ms ease-in-out;
		transition: all 150ms ease-in-out;
}
	.btn:hover {
		background: #3aa4ff;
		border-color: #3aa4ff;
		color: #fff;
		text-decoration: none;
	}
	
	/* --- Display button as inline-block --- */
	.btn-inline {
		display: inline-block;
		padding-left: 20px;
		padding-right: 20px;
		width: auto;
	}

	/* --- White button --- */
	/* --- Preview button --- */
	.btn-white,
	.btn-preview {
		background: #fff;
		border-color: #dadada;
		color: #2576bc;
	}
		.btn-white:hover,
		.btn-preview:hover {
			background: #fff;
			border-color: #3aa4ff;
			color: #3aa4ff;
		}
	/* --- White FILLED button w default text color --- */
	.btn-white-filled {
		background: #ffffff;
		color: #000;
	}
	.btn-white-filled:hover {
		/*background: #51fd74 !important;*/
		color: #000;
	}

		/* --- Orange button --- */
		.btn-orange {
			background: #f47b2b;
			border-color: #f47b2b;
			color: #fff;
		}
			.btn-orange:hover {
				background: #f7a400;
				border-color: #f7a400;
				color: #fff;
			}

		/* --- Orange FILLED button w white text --- */
		.btn-orange-filled {
			background: #f47b2b;
		}
		.btn-orange-filled:hover {
			background: #f8b050 !important;
		}

		
	/* --- Transparent button --- */
	.btn-transparent {
		background: none;
		border-color: #2576bc;
		color: #2576bc;
	}
		.btn-transparent:hover {
			background: none;
			border-color: #3aa4ff;
			color: #3aa4ff;
		}

	/* --- White Transparent button --- */
	.btn-white-transparent {
		background: none;
		border-color: #fff;
		color: #fff;
	}
		.btn-white-transparent:hover {
			background: #fff;
			border-color: #fff;
			color: #3aa4ff;
		}

	/* --- Grey button --- */
	.btn-grey {
		background: #888;
		border-color: #888;
		color: #fff;
	}
		.btn-grey:hover {
			background: #b1b1b1;
			border-color: #b1b1b1;
			color: #fff;
		}

	/* --- eShop button --- */
	.btn-eshop {
		background: #fff;
		border-color: #dadada;
		color: #ff7d00;
	}
		/* logo as an icon font */
		.btn-eshop span.icon-eshop,
		.btn-eshop span.icon-eshop-nin,
		.logo-eshop span.icon-eshop,
		.logo-eshop span.icon-eshop-nin {
			display: inline-block;
			position: relative;
			text-indent: -99999em;
		}
		.btn-eshop span.icon-eshop, .logo-eshop span.icon-eshop		{ width: 2.7em; }
		.btn-eshop span.icon-eshop-nin, .logo-eshop span.icon-eshop-nin	{ width: 4em; }

			.btn-eshop span.icon-eshop:before,
			.logo-eshop span.icon-eshop:before {
				bottom: -3px;
				color: #ff7d00;
			}
			.btn-eshop span.icon-eshop-nin:before,
			.logo-eshop span.icon-eshop-nin:before {
				bottom: -2px;
				color: #8c8c8c;
			}
		/* hover state */
		.btn-eshop:hover {
			background: #fff;
			border-color: #ff7d00;
			color: #ff7d00;
		}
	/* --- eShop button with smaller orange text --- */
	.btn-eshop.orange {
		color: #ff7d00;
		font-size: 18px;
	}
		.btn-eshop.orange span.icon-eshop:before,
		.btn-eshop.orange span.icon-eshop-nin:before {
			font-size: 20px;
		}

	/* --- Official Site button --- */
	/* --- Preview button --- */
	.btn-site,
	.btn-preview {
		padding: 5px 0;
	}

	/* --- Preview button --- */
	.btn-preview {
		font-size: 18px;
	}
	/* --- Large button --- */
	.btn-large {
		font-size: 30px;
	}

/* --- Text button with arrow --- */
.text-btn-arrow {
	/*white-space: nowrap;*/
}
	.text-btn-arrow:after {
		content: '\e606';
		display: inline-block;
		font-family: 'icons';
		font-size: 60%;
		height: 20px;
		position: relative;
		width: 20px;
	}
	
/* --- Content separator button with top/bottom border  --- */
.btn-borders {
	border-bottom: 1px solid #dadada;
	border-top: 1px solid #dadada;
	font-size: 24px;
	margin: 0 0 20px;
	padding: 15px 0;
	text-align: center;
}

/* --- Content separator button with top/bottom border  --- */
.btn-no-borders {
	font-size: 28px;
	margin: 0 0 20px;
	text-align: center;
}

/* --- Block button --- */

a.btn-block {
	text-decoration: none;
	color: #fff;
	font-family: 'LatoBold';
	line-height: 2em;
	padding: 10px 25px;
	white-space: nowrap;
}
	a.btn-block:hover {
		color: #fff;
	}


/* --- Text button with circle plus --- */
.text-btn-plus {
	white-space: nowrap;
}
	.text-btn-plus:after {
		border: 2px solid #2576bc;
		border-radius: 50%;
		content: '+';
		display: inline-block;
		font-family: 'LatoRegular';
		font-size: 24px;
		font-style: normal;
		height: 26px;
		line-height: 22px;
		margin-left: 10px;
		position: relative;
		text-align: center;
		width: 26px;
	}
	.text-btn-plus:hover:after {
		border-color: #3aa4ff;
	}

/* --- Video thumbnail links --- */
.modal-video-trigger {
	display: inline-block;
	position: relative;
	text-decoration: none;
}

	.play-btn-container {
		background: #000;
		position: relative;
	}
	
		.play-btn-container img {
			opacity: 1;
		
			-webkit-transition: opacity .3s ease-in-out;
			transition: opacity .3s ease-in-out;
		}
	
			.play-btn-container:hover img {
				opacity: .7;
			}	
	
	.play-btn {
		background: url(/images/global/play-button.png);
		display: block;
		height: 64px;
		width: 64px;
		left: 50%;
		top: 50%;
		margin-left: -32px;
		margin-top: -32px;
		position: absolute;
		opacity: .8;
		-webkit-transition: opacity .3s ease-in-out;
		transition: opacity .3s ease-in-out;
	}
	
	.play-btn:hover {
		opacity: 1;
	}
	.modal-video-trigger span.b8 {
		display: block;
		line-height: 1.2;
		margin-bottom: 10px;
		max-width: 166px;
		text-align: left;
	}
	.modal-video-trigger img {
		border-radius: 2px;
		display: block;

	}
	


/* --- Split, single-row CTA buttons with top and bottom border --- */
ul.split-cta {
	border-top: 1px solid #dadada;
	border-bottom: 1px solid #dadada;
	line-height: 1.5;
	margin-bottom: 20px;
}

	ul.split-cta li {
		border-left: 1px solid #dadada;
		display: inline-block;
		padding: 10px 0;
		margin: 0!important;
	}
	ul.split-cta li:first-child {
		border: none;
		text-align: right;
		padding-right: 7%;
	}
	
	ul.split-cta li:last-child {
		text-align: left;
		padding-left: 7%;
	}	

	@media screen and (max-width: 570px) {
		ul.split-cta li {
			border-left: none;
			border-bottom: 1px solid #dadada;
			line-height: 1.2;
			
		}
		
		ul.split-cta li:first-child {
			border-bottom: 1px solid #dadada;
			text-align: center;
			padding-right: 0;
		}
		
		ul.split-cta li:last-child {
			border-bottom: none;
			text-align: center;
			padding-left: 0;
		}
	}


/*	-----------------------------------
	Lists
	----------------------------------- */
	
.bullet-list {} /* for list in a container that can not be reached. i.e: CMS body text */

div.cms-content ul,
ul.bullets,
.bullet-list ul {
	padding-left: 15px;
}
	ul.bullets li,
	div.cms-content ul li,
	.bullet-list ul li {
		line-height: 1.5;
		margin-bottom: 2ex;
		position: relative;
	}
	ul.bullets li:before,
	div.cms-content ul li:before,
	.bullet-list ul li:before {
		color: #0096c8;
		content: '\2022';
		display: block;
		font-size: 17px;
		left: -15px;
		position: absolute;
		top: 0;
	}

	ul.bullets.grey li:before {
		color: #777;
	}
	
	ul.bullets.red li:before {
		color: #ce181e;
	}


ul.asterisk {
	margin-bottom: 20px;
	padding-left: 18px;
}
	ul.asterisk li {
		margin-bottom: 5px;
		position: relative;
	}
	ul.asterisk li:before {
		content: '*';
		display: block;
		left: -15px;
		position: absolute;
		top: 0;
	}
	ul.asterisk li.no-stars {
		margin-left: -15px;
	}
	ul.asterisk li.no-stars:before {
		content: '';
	}
	ul.asterisk li.two-stars:before {
		content: '**';
	}
	ul.asterisk li.three-stars:before {
		content: '***';
	}
	ul.asterisk li.cross:before {
		content: '†';
	}

ol.numbers {
	list-style: decimal;
	padding-left: 20px;
}


/*	-----------------------------------
	Form Elements
	----------------------------------- */
/* --- Custom Checkboxes --- */
input[type="checkbox"] {
	opacity: 0;
	position: absolute;
}
	input[type="checkbox"] + label {
		clear: both;
		display: block;
		font-family: 'LatoBold';
		margin-bottom: 12px;
		padding-left: 25px;
		position: relative;
	}
	/* Styled pseudo input */
	input[type="checkbox"] + label:before {
		background: #dbdbdb;
		border-radius: 2px;
		color: #dbdbdb;
		content: '\e620';
		display: block;
		font-family: 'icons';
		font-size: 14px;
		height: 20px;
		left: 0;
		line-height: 20px;
		margin-right: 10px;
		position: absolute;
		text-align: center;
		top: -2px;
		width: 20px;
	}
	/* Focus state */
	input[type="checkbox"]:focus + label:before {
		outline: 1px dotted #3aa4ff;
	}
	/* Active state */
	input[type="checkbox"]:checked + label {
		color: #2576bc;
	}
	input[type="checkbox"]:checked + label:before {
		background: #2576bc;
		color: #fff;
	}
	input[type="checkbox"]:disabled + label {
		color: #dadada;
	}
	input[type="checkbox"]:disabled + label:before {
		background: #efefef;
		color: #efefef;
	}

/*	-----------------------------------
	Pagination
	----------------------------------- */
div.pagination-bar {
	border-bottom: 1px solid #dadada;
	border-top: 1px solid #dadada;
	margin-bottom: -1px;
	min-height: 49px;
}
	/* General Styles */
	div.pagination-bar ul {
		display: inline-block;
		font-family: 'LatoBold';
		font-size: 14px;
		line-height: 28px;
		height: 100%;
		vertical-align: top;
		white-space: nowrap;
	}
	div.pagination-bar ul:after {
		clear: both;
		content: '';
		display: block;
	}
		div.pagination-bar li {
			display: inline-block;
		}

	/* Sort Options */
	div.pagination-bar ul.options {
		font-size: 16px;
		padding: 10px 0;
		width: 50%;
	}
	div.pagination-bar ul.sort {
		float: left;
	}
	div.pagination-bar ul.items {
		float: left;
		text-align: right;
	}
		ul.options li {
			border-left: 1px solid #dadada;
			font-family: 'LatoRegular';
		}
		ul.options li:nth-child(1),
		ul.options li:nth-child(2) {
			border: none;
		}
			ul.options li a {
				display: block;
				font-family: 'LatoBold';
				padding: 0 10px;
			}
			ul.options li.active a {
				color: #777;
				font-family: 'LatoRegular';
			}
				ul.options li.active a:hover {
					color: #777;
					cursor: default;
					text-decoration: none;
				}

	/* Pagination - Pages */
	div.pagination-bar div.bottom-row {
		clear: both;
		display: inline-block;
		text-align: center;
		width: 100%;
	}
		div.bottom-row:before {
			background: #dadada;
			content: '';
			display: block;
			height: 1px;
			left: 0;
			position: absolute;
			width: 100%;
		}
		div.pagination-bar ul.pagination {
			padding: 10px 10px 10px 0;
		}
			ul.pagination li {
				min-width: 28px;
				text-align: center;
			}
				ul.pagination li a {
					display: block;
					height: 100%;
					width: 100%;
				}
				ul.pagination li.active a {
					background: #f5f5f5;
					border-radius: 50%;
					color: #777;
				}
				ul.pagination li a:hover {
					color: #3aa4ff;
				}

				ul.pagination li.ellipses a {
					color: #777;
				}
					ul.pagination li.ellipses a:hover {
						color: #777;
						cursor: default;
						text-decoration: none;
					}

		/* Pagination - Prev/Next Arrows */
		div.pagination-bar ul.pagination-nav {}
			ul.pagination-nav li {
				border-left: 1px solid #dadada;
				border-right: 1px solid #dadada;
				display: block;
				float: left;
				height: 48px;
				margin-left: -1px;
				position: relative;
				text-indent: -99999em;
				vertical-align: top;
				width: 50px;
			}
				ul.pagination-nav li a {
					display: block;
					height: 100%;
					width: 100%;
				}
				ul.pagination-nav li a:before {
					font-size: 24px;
					height: 100%;
					padding-top: 12px;
					text-align: center;
					width: 100%;
				}
				ul.pagination-nav li a:hover {
					color: #3aa4ff;
				}
				ul.pagination-nav li.disabled a {
					color: #dbdbdb;
					cursor: default;
				}


/*	-----------------------------------
	Modal Window
	----------------------------------- */
div#overlay {
	background-color: #000;
	display: block;
	min-height: 100%;
	left: 0;
	opacity: .7;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999998;
}
div#modal-window {
	background: #fff;
	border-radius: 2px;
	color: #000;
	display: block;
	min-height: 300px;
	margin: 0 auto;
	opacity: 0;
	padding: 2%;
	position: fixed;
	max-width: 780px;
	width: 80%;
	z-index: 999999;

	/* Had to remove this so video would play on ios6 devices*/
	/*-webkit-transform: translate3d(0,0,0);
	-webkit-transform: scale(0);
	   -moz-transform: scale(0);
	    -ms-transform: scale(0);
	     -o-transform: scale(0);*/
}
div#modal-window.modal-video {
	min-height: 0;
}
	div.video-player .innerWrapper,
	div.poster-player .innerWrapper,
	div#modal-window .innerWrapper {
		z-index: 1 !important; 
	}
	/* Close Button */
	#btn-modal-close {
		background: #2576bc;
		border: none;
		border-radius: 50%;
		cursor: pointer;
		height: 30px;
		padding: 0;
		position: absolute;
		right: -10px;
		text-indent: -99999em;
		text-decoration: none;
		top: -10px;
		width: 30px;
		z-index: 2;
	}
		#btn-modal-close:before {
			color: #fff;
			content: '\e61b';
			display: block;
			font-family: 'icons';
			font-size: 15px;
			left: 0;
			line-height: 30px;
			position: absolute;
			text-align: center;
			text-indent: 0;
			top: 0;
			width: 30px;
		}
		#btn-modal-close:hover {
			background: #3aa4ff;
		}


	div.modal-content {
		display: none;
	}

	div#modal-window div.modal-content {
		position: relative;
		-webkit-backface-visibility: hidden;
	}
	div#modal-window div#video-player {
		background-color: #000;
		height: 100%;
		position: relative;
		width: 100%;
	}


/*	-----------------------------------
	Preview Popup Window
	----------------------------------- */
div.preview-overlay,
div.preview-overlay-pv {
	background: rgba(255,255,255,.5);
	height: 100%;
	left: 0;
	top: 0;
	position: fixed;
	width: 100%;
	z-index: 3;
}
/* --- Preview Window --- */
div.preview-container {
	background: #fff;
	box-shadow: 0 3px 5px rgba(0,0,0,0.2);
	max-width: 100%;
	opacity: 0;
	position: absolute;
	width: 600px;
	z-index: 5;

	min-height: 200px;
}
div.preview-container.loading {
	background: #fff url('/images/global/loader.gif') center center no-repeat;
}
div.preview-container:before,
div.preview-container:after {
	background: #dadada;
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	z-index: -1;
}

div.preview-container.no-border {
	background: #f5f5f7;
}

div.preview-container.no-border:before,
div.preview-container.no-border:after {
	background: #f5f5f7;
}

div.preview-container:before {
	height: 30px;
	top: 0;
}
div.preview-container:after {
	height: 5px;
	bottom: 0;
}
	/* Close Button */
	div.preview-container a.preview-close,
	div.preview-container a.preview-close-pv {
		background: #fff;
		border-radius: 2px;
		height: 20px;
		position: absolute;
		right: 5px;
		text-indent: -99999em;
		text-decoration: none;
		top: 5px;
		width: 20px;
		z-index: 10;
	}
		div.preview-container a.preview-close:before,
		div.preview-container a.preview-close-pv:before {
			color: #2576bc;
			font-size: 12px;
			line-height: 20px;
			width: 100%;
			text-align: center;
		}
		div.preview-container a.preview-close:hover:before,
		div.preview-container a.preview-close-pv:hover:before {
			color: #3aa4ff;
		}

	/* Content Container Grid */
	div.preview-container div.preview-content {
		border-bottom: 5px solid #dadada;
		border-top: 30px solid #dadada;
		padding: 20px;
	}
	div.preview-container div.preview-content[data-system*="DS"] {
		border-color: #ce181e;
	}
	div.preview-container div.preview-content[data-system*="Wii"] {
		border-color: #0096c8;
	}
	div.preview-container div.preview-content:before {
		color: #fff;
		display: block;
		font-family: 'icons';
		left: 0;
		line-height: 30px;
		position: absolute;
		text-align: center;
		top: 0;
		width: 100%;
	}
	div.preview-container div.preview-content[data-system*="DS"]:before {
		content: '\e619';
		font-size: 30px;
	}
	div.preview-container div.preview-content[data-system*="Wii"]:before {
		content: '\e61a';
		font-size: 16px;
	}
		/* Video Player */
		div.preview-content div.video-player {
			margin-bottom: 20px;
		}

		/* Title & Details */
		div.preview-info {}
			div.preview-info li {
				margin-bottom: 5px;
			}
				div.preview-info li span {
					color: #484848;
					font-family: 'LatoBold';
				}
		/* Learn More Buttons */
		div.preview-buttons {}
			div.preview-buttons li {
				margin-bottom: 10px;
				text-align: center;
			}


/*	-----------------------------------
	Tab Switcher
	----------------------------------- */
.tab-switcher {
	position: relative;
}
	.tab-switcher ul.tab-content {
		position: relative;
	}
		.tab-switcher ul.tab-content > li {
			display: none;
		}
			.tab-switcher ul.tab-content > li.active {
				display: block;
			}
	.tab-switcher ul.tab-nav {
		position: relative;
	}
		.tab-switcher ul.tab-nav li {
			display: inline-block;
			vertical-align: top;
		}

/*	-----------------------------------
	Tab Slider (3DS Home Hero)
	----------------------------------- */
.tab-slider {
	max-width: 980px;
	position: relative;
	z-index: 1;
}
	.tab-slider ul.content {
		height: 488px;
		overflow: hidden;
		position: relative;
	}
		.tab-slider ul.content li {
			float: left;
			overflow: hidden;
			position: relative;
			width: 4%;
			-webkit-transition: width 500ms, height 500ms;
			   -moz-transition: width 500ms, height 500ms;
			     -o-transition: width 500ms, height 500ms;
			        transition: width 500ms, height 500ms;
		}
			.tab-slider ul.content li .slideContent {
				opacity: 0;
				-webkit-transition: opacity 500ms cubic-bezier(0.785, 0.135, 0.150, 0.860);
			}
			.tab-slider ul.content li:first-child {
				width: 92%;
			}
		.tab-slider ul.triggers li {
			cursor: pointer;
		}

/*	-----------------------------------
	Rating stars (Game detail page)
	----------------------------------- */
	.rating-stars {
		background-color: transparent;
		background-image: url('/images/global/sprite-rating-stars.png'); 
		background-repeat: no-repeat;
		background-position: 0 0;
		width: 21px;
		height: 20px;
		display: inline-block;
	}
	.rating-stars.star-filled-gray {
		background-position: 0 0;
	}
	.rating-stars.star-empty {
		background-position: -22px 0;
	}	
	.rating-stars.star-filled-yellow {
		background-position: -44px 0;
	}


/* 	================================================

	DESKTOP VIEW

	================================================ */
@media screen and (min-width: 769px) {

	/* Hover state */
	input[type="checkbox"] + label:hover {
		color: #3aa4ff;
		cursor: pointer;
	}
	input[type="checkbox"] + label:hover:before {
		color: #c1c1c1;
	}
	/* Active state */
	input[type="checkbox"]:checked + label {
		color: #2576bc;
	}
	input[type="checkbox"]:checked + label:before {
		background: #2576bc;
		color: #fff;
	}
	/* Disabled state */
	input[type="checkbox"]:disabled + label:hover {
		color: #dadada;
		cursor: default;
	}
	input[type="checkbox"]:disabled + label:hover:before {
		background: #efefef;
		color: #efefef;
	}

/*	-----------------------------------
	Pagination
	----------------------------------- */
	/* Sort Options */
	div.pagination-bar ul.options {
		border-bottom: none;
		width: auto;
	}
	div.pagination-bar ul.sort {
		float: left;
		padding-right: 3%;
	}
	div.pagination-bar ul.items {
		text-align: left;
	}
	/* Pagination - Pages */
	div.pagination-bar div.bottom-row {
		clear: none;
		float: right;
		width: auto;
	}
		div.bottom-row:before {
			display: none;
		}
}

/* 	================================================

	TABLET VIEW

	================================================ */
@media screen and (min-width: 571px) and (max-width: 768px) {

/*	-----------------------------------
	Backgrounds
	----------------------------------- */
	div#page-container.container-gradient:before {
		top: 160px;
	}

/*	-----------------------------------
	Platform Indicators
	----------------------------------- */
	/* --- Date with Border --- */
	.date {
		color: #999;
	}

/*	-----------------------------------
	Buttons
	----------------------------------- */
	.btn,
	.btn-white,
	.btn-grey,
	.btn-orange {
		font-size: 18px;
	}
	.btn-large {
		font-size: 30px;
	}
	
	/*	-----------------------------------
	Tab Slider (3DS Home Hero)
	----------------------------------- */
	.tab-slider ul.content {
		height: 750px;
		-webkit-transition : height 300ms;
		   -moz-transition : height 300ms;
		    -ms-transition : height 300ms;
		     -o-transition : height 300ms;
		        transition : height 300ms;
	}
	.tab-slider.short ul.content {
		height: 580px;
	}
		.tab-slider ul.content li {
			width: 100%;
		}

}


/* 	================================================

	MOBILE VIEW

	================================================ */
@media screen and (max-width: 570px) {

/*	-----------------------------------
	Backgrounds
	----------------------------------- */
	div#page-container.container-gradient:before {
		top: 140px;
	}
	.page-gradient {
		margin-bottom: 40px;
	}

/*	-----------------------------------
	Buttons
	----------------------------------- */
	.btn,
	.btn-white,
	.btn-grey,
	.btn-orange {
		font-size: 18px;
	}
	.btn-large {
		font-size: 30px;
	}
	
	body:lang(fr-CA) .text-btn-plus:after {
		font-size: 16px;
		height: 20px;
		line-height: 16px;
		margin-left: 6px;
		width: 20px;
	}

	.btn-no-borders {
		font-size: 1em;
	}


/*	-----------------------------------
	Form Elements
	----------------------------------- */
	/* --- Custom Checkboxes --- */
	input[type="checkbox"] + label {
		padding-left: 0;
	}
	/* Styled pseudo input */
	input[type="checkbox"] + label:before {
		left: auto;
		right: 0;
	}
	

/*	-----------------------------------
	Pagination
	----------------------------------- */
	/* General Styles */
	div.pagination-bar ul {
		line-height: 20px;
	}
	/* Sort Options */
	div.pagination-bar ul.options {
		padding: 10px 0;
	}
		ul.options li a {
			padding: 0 5px;
		}

	/* Pagination - Pages */
	div.pagination-bar ul.pagination {
		line-height: 30px;
		padding: 5px 15px 0 5px;
	}
		ul.pagination li {
			margin-right: 5px;
			min-width: 30px;
		}
		
		ul.pagination li.ellipses {
			min-width: 10px;
		}

	/* Pagination - Prev/Next Arrows */
	ul.pagination-nav li {
		height: 40px;
		width: 30px;
	}
		ul.pagination-nav li a:before {
			font-size: 20px;
			padding-top: 10px;
		}
		
/*	-----------------------------------
	Tab Slider (3DS Home Hero)
	----------------------------------- */
	.tab-slider ul.content {
		height: 620px;
	}

/*	-----------------------------------
	Accordion Links (similar to footer)
	----------------------------------- */
	/* --- Wrapper --- */
	.accordion {
		border-bottom: 10px solid #2576bc;
		max-width: 100%;
		width: 100%;
	}
		/* --- Row --- */
		.accordion-row {}

			/* --- Expandable Column --- */
			.accordion-row .column {
				background: #fff;
				max-width: 100%;
				padding: 0;
			}
				/* General Styles */
				.accordion-row .column ul li {
					padding: 0;
					margin-bottom: 15px;
				}
					/* Links */
					.accordion-row .column li a {
						color: #484848;
						display: block;
						font-family: 'LatoLight';
						font-size: 18px;
					}
					/* Subhead Links */
					.accordion-row .column a.b2 {
						font-size: 22px;
						font-family: 'LatoRegular';
						margin-bottom: 20px;
					}
					.accordion-row .column.closed ul {
						display: none;
					}

				/* Headings */
				.accordion-row .column  h2 {
					background: #fafafa;
					border-top: 1px solid #dadada;
					color: #2576bc;
					display: block;
					font-family: 'LatoBold';
					font-size: 20px;
					height: 60px;
					margin: 0;
					padding: 20px;
					position: relative;
				}
				.accordion-row .column  h2.trigger {
					border-bottom: 1px solid #dadada;
				}
				.accordion-row .column  h2 a {
					color: #2576bc;
					display: block;
					height: 100%;
					width: 100%;
				}
					/* Arrow Icon */
					.accordion-row .column  h2.trigger:after {
						content: '\e60f';
						display: block;
						font-family: 'icons';
						font-size: 20px;
						position: absolute;
						right: 25px;
						top: 20px;
					}

				/* Closed State */
				.accordion-row .column.closed h2 {
					border-bottom: none;
				}
					.accordion-row .column.closed h2:after {
						content: '\e60c';
					}

				/* --- Open Drawer Links --- */
				.accordion-row .column  > ul {
					padding: 20px 20px 10px;
					display: none;
				}
}

@media screen and (max-width: 310px) {

	.btn-no-borders {
		font-size: 0.8em;
	}
	
}

/* 	================================================

	3DS Browser Specific Styles

	================================================ */
body.nin3DS .date {
	font-size: 14px;
}

body.nin3DS .accordion-row .column h2 {
	font-size: 18px;
}

body.nin3DS .accordion-row .column  h2.trigger:after {
	background: url('../images/global/no-icon-font-arrows.png') 0 -20px no-repeat;
	content: '';
	height: 17px;
	overflow: hidden;
	position: absolute;
	right: 25px;
	top: 20px;
	width: 25px;
}
body.nin3DS .accordion-row .column.closed h2:after {
	background-position: 0 0;
	content: '';
}

body.nin3DS .text-btn-arrow:after,
body.nin3DS .text-btn-plus:after {
	display: none;
}
body.nin3DS .modal-video-trigger.play-btn:before {
	background: url('../images/global/play-button.png') center center no-repeat;
	content: '';
}

body.nin3DS input[type="checkbox"] + label:before {
	content: 'X';
}



/*	================================================
	
	Custom styles used in compel
	
	================================================ */
p.gd-footnote {
	font-size: .8em;
	line-height: 1.2;
}

li.cms-indent {
	margin-left: 2em;
}
	ul li.cms-indent:before {
		content: "-";
	}




/**
 *
 * Main container
 *
 */
#addToHomeScreen {
	z-index:9999;
	-webkit-user-select:none;
	user-select:none;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-touch-callout:none;
	touch-callout:none;
	width:240px;
	font-size:15px;
	padding:12px 14px;
	text-align:left;
	font-family:helvetica;
	background-image:-webkit-gradient(linear,0 0,0 100%,color-stop(0,#fff),color-stop(0.02,#eee),color-stop(0.98,#ccc),color-stop(1,#a3a3a3));
	border:1px solid #505050;
	-webkit-border-radius:8px;
	-webkit-background-clip:padding-box;
	color:#333;
	text-shadow:0 1px 0 rgba(255,255,255,0.75);
	line-height:130%;
	-webkit-box-shadow:0 0 4px rgba(0,0,0,0.5);
}

#addToHomeScreen.addToHomeIOS7 {
	background:#f2f2f2 !important;
	-webkit-border-radius:1px !important;
	border:1px solid #ccc;
	-webkit-box-shadow:0 0 4px rgba(0,0,0,0.2);
}

#addToHomeScreen.addToHomeIpad {
	width:268px;
	font-size:18px;
	padding:14px;
}

/**
 *
 * The 'wide' class is added when the popup contains the touch icon
 *
 */
#addToHomeScreen.addToHomeWide {
	width:296px;
}

#addToHomeScreen.addToHomeIpad.addToHomeWide {
	width:320px;
	font-size:18px;
	padding:14px;
}

/**
 *
 * The balloon arrow
 *
 */
#addToHomeScreen .addToHomeArrow {
	position:absolute;
	background-image:-webkit-gradient(linear,0 0,100% 100%,color-stop(0,rgba(204,204,204,0)),color-stop(0.4,rgba(204,204,204,0)),color-stop(0.4,#ccc));
	border-width:0 1px 1px 0;
	border-style:solid;
	border-color:#505050;
	width:16px; height:16px;
	-webkit-transform:rotateZ(45deg);
	bottom:-9px;
	left:50%;
	margin-left:-8px;
	-webkit-box-shadow:inset -1px -1px 0 #a9a9a9;
	-webkit-border-bottom-right-radius:2px;
}

#addToHomeScreen.addToHomeIOS7 .addToHomeArrow {
	background-image:-webkit-gradient(linear,0 0,100% 100%,color-stop(0,rgba(204,204,204,0)),color-stop(0.4,rgba(204,204,204,0)),color-stop(0.4,#f2f2f2)) !important;
	-webkit-box-shadow:inset -1px -1px 0 #fff !important;
	border-color:#ccc !important;
}

/**
 *
 * The balloon arrow for iPad
 *
 */
#addToHomeScreen.addToHomeIpad .addToHomeArrow {
	-webkit-transform:rotateZ(-135deg);
	background-image:-webkit-gradient(linear,0 0,100% 100%,color-stop(0,rgba(238,238,238,0)),color-stop(0.4,rgba(238,238,238,0)),color-stop(0.4,#eee));
	-webkit-box-shadow:inset -1px -1px 0 #fff;
	top:-9px; bottom:auto; left:50%;
}


/**
 *
 * Close button
 *
 */
#addToHomeScreen .addToHomeClose {
	-webkit-box-sizing:border-box;
	position:absolute;
	right:4px;
	top:4px;
	width:18px;
	height:18px; line-height:14px;
	text-align:center;
	text-indent:1px;
	-webkit-border-radius:9px;
	background:rgba(0,0,0,0.12);
	color:#888;
	-webkit-box-shadow:0 1px 0 #fff;
	font-size:16px;
}

#addToHomeScreen.addToHomeIOS7 .addToHomeClose {
	line-height:12px;
	padding-right:1px;
	background:transparent;
	border: 1px solid #888;
	-webkit-box-shadow:none;
}

/**
 *
 * The '+' icon, displayed only on iOS < 4.2
 *
 */
#addToHomeScreen .addToHomePlus {
	font-weight:bold;
	font-size:1.3em;
}


/**
 *
 * The 'share' icon, displayed only on iOS >= 4.2
 *
 */
#addToHomeScreen .addToHomeShare {
	display:inline-block;
	width:18px;
	height:15px;
	background-repeat:no-repeat;
	background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAeCAQAAADu6HTYAAADPElEQVR4Xq3TX2gcRRzA8e/M7mVv2+TSNpc/TZtrY6jUGqgaSAmEChKLrYK0YH0RFC2CSCkEfCghiKU04J8qNigq6os+iQV98MHWFwVBrQQRWs21lBw5cw3NNb1/udu72RGG5Y77IzXW77D7sAwf5scyYoL6BGXSDKFZwaGpLvIUaeoCkvX1MmsM0Ny6oRSQYOLuIS+YZOpfQdqslpUxcZrzTVAz4qPwW2O3CeIwC/RSzeY6Ow1QhUrkr+YOWfEKDkEP8Rij7CHKJmrFSDHBdwGEE5wiGChPN+PnT8VdRtEIl1d4gRj/1EVe5ZSBKGh8iqQpo/Fo5+3C/gz0MYg4zgwbqday1/Q4B8BGQ45d/Hi54lakCrU5obOcidJpu1+Lg9whjabyaOYLnrIBFFaRD+xe2ybMDWY66GmP/WA9cGfGp0CWhy0wkMN8inepFiH2rV1j0NQSNQbFLRQnS8/8YSDBBpadfv4CYDub2fmeHDNAsL1MBWUel0iA+Xik6eHcyvD3vAMSU1TGuA/YRS+dD7ovCQN43GKRFCU20Kd3V/avDVVyAZ5niTEuLA5/zBGWg9EEEhfJKN200Tat8CmRAQb9+wv7soPlHt2tQorsz1uPbr0HTY4sJwrH47zJZwABBAKLMBoQXepwgTwdHCo+fXMkQ4lrxEmQ5AaXipPqDY9V2vn09tgvTPI71EEGYxM+/uMJLJ4svpgaWGKOi/xKgmqLSUGSUd5f2vIVJ/CgBaTIUsZ7ZBsn0+NzfMOXLFCXQyTcybN6ep5ZZgUOHn7jpfUpsZshdugPGf+E5zjbyHTSRyQ8xfRPPM/s63RHeuknSoT22mjmmnAOIMkUZ6D1xSfPPAfd1WFKM3sO2CMaHx8M1NjnXKHaAGGkOW0C02WeYHUz4qMtx+w5gUDS8NckYe5lHsMYwCZEPyEEmjLDZFmAS7CDviMdxyTkMNVBKEmYLvbiQQBIBBbCQG04bGQvFWz6CfsCQLWCigILFwcfkGYBiOpbYuOizTAyYyDdCtrGaRG1LCkIgMYEFhI0WqQZoSlbGRyHKe4qOx7iv2bVQW9dp4dlM/x6kmwnWQcd/Q3FCqwTEiT5s+6D5v/pb0SSHyg7uhMWAAAAAElFTkSuQmCC);
	background-size:18px 15px;
	text-indent:-9999em;
	overflow:hidden;
}

#addToHomeScreen.addToHomeIOS7 .addToHomeShare {
	width:11px;
	background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAA8CAYAAAAQTCjdAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAASCQAAEgkB80sG3AAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAKjSURBVGiB7dpPiFVVHMDxz7m9NCtMyI2bEJEC25WrEkzHUXCRraIwdNE8ZxfYIlcis1ZEbGEzT1QCF4XgH1CyWhUoJKIWNRGEiCNKmkSiYTzfcfGuOokx77x3ZlS8382959zfn+/invvn3RdijHIRBrwkOINCYXEcdjpb7VyiYdBsLScwt5y6IloYdzqXo36Ro0gY9IKWo+5JwmzBt2HQnBw9ehYNazyn5TBee8Dh+Vq+CWu92GufnkTDR6ab7gDeBNHouMM/l9tXTXM0fGBmL726Fg1Dam74EsvKqR8VNowL2Yzj5f7rnnE4DHq2235diYYhhTGfC94up35T0y+6di/ITU0rKVd+sEi0P7xr2pSJOu8zvF+OzqEv7vDH/WFxt7/cshy/ticsN8sXYUht0kXDOlsF9XJ4UaEvNoz9X3zc5bKaZThbyr5jzJ4wlNY7KTgM+ES0vhz+KeiPw36fKC/ucAF9uFBOrTZm26SJCtaV27+xIo7cXdkTEhvOoh+XyxprU1qnim7CQdGK2HAyKRexYVShT3RItDElN+mkjiP2Ym+S3f01hv2EVal5WW6hU0ElmptaqJuBpXg6MbeFH2LDpU6CQ93zWIKnEvs0cayGU3glMfkOo1jQYewZzOuyz7FC95Jwo5OgUFfgeg993hh/eTqCTxOSm/iuk8DY0Ap1b2GhtHXxsfZN4j/X0fOx4auEIknEhqv4OiUn1L13Z/+xWfWVaG4q0dxUormpRHNTieamEs1NJZqbJ1Q0jHvdiJo5S2cVjSNOCHZhn3/SnuYnIvl3yomIIz7MXZMn9hydRCrR3FSiualEc1OJ5qYSzU0lmptKNDePjWgwcPePT7/g+4cp8wCW4GXaryK3tL+mLdD5x62ppllgu7bso8q/2HIbzGWdNmWnSJwAAAAASUVORK5CYII=);
	background-size:11px 15px;
}

/**
 *
 * The touch icon (if available)
 *
 */
#addToHomeScreen .addToHomeTouchIcon {
	display:block;
	float:left;
	-webkit-border-radius:6px;
	border-radius:6px;
	-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.5),
		inset 0 0 2px rgba(255,255,255,0.9);
	box-shadow:0 1px 3px rgba(0,0,0,0.5),
		inset 0 0 2px rgba(255,255,255,0.9);
	background-repeat:no-repeat;
	width:57px; height:57px;
	-webkit-background-size:57px 57px;
	background-size:57px 57px;
	margin:0 12px 0 0;
	border:1px solid #333;
	-webkit-background-clip:padding-box;
	background-clip:padding-box;
}




.outdated-overlay {
	position: fixed;
	z-index: 1000;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: url(/images/outdatedbrowser/bg-overlay.png) repeat;
}

.outdated-message {
	position: absolute;
	z-index: 1999;
	top: 20%;
	left: 0;
	width: 100%;
	height: 583px;
	background: url(/images/outdatedbrowser/img-message.png) no-repeat center center;
}
	.fr-message .outdated-message {
		background: url(/images/outdatedbrowser/img-message-fr.png) no-repeat center center;
	}
	
	.es-message .outdated-message {
		background: url(/images/outdatedbrowser/img-message-es.png) no-repeat center center;
	}

	.outdated-force-width {
		width: 980px;
		height: 583px;
		position: relative;
		margin: 0 auto;
	}

	#btn-outdated-continue {
		position: absolute;
		right: -11px;
		bottom: 98px;
		width: 200px;
		height: 54px;
	}

	#btn-browser-firefox,
	#btn-browser-ie,
	#btn-browser-chrome,
	#btn-browser-safari {
		position: absolute;
		right: -11px;
		bottom: 209px;
		height: 24px;
	}

	#btn-browser-firefox:hover ,
	#btn-browser-ie:hover,
	#btn-browser-chrome:hover,
	#btn-browser-safari:hover {
		border-bottom: 1px solid #1e74bf;

	}

		#btn-browser-chrome {
			left: 526px;
			width: 107px;
		}

			.fr-message #btn-browser-chrome,
			.es-message #btn-browser-chrome {
				width: 112px;
			}

		#btn-browser-ie {
			left: 643px;
			width: 117px;
		}
			.fr-message #btn-browser-ie,
			.es-message #btn-browser-ie  {
				left: 650px;
				width: 128px;
			}

		#btn-browser-firefox {
			left: 771px;
			width: 101px;
		}
			.fr-message #btn-browser-firefox,
			.es-message #btn-browser-firefox  {
				left: 791px;
				width: 106px;
			}

		#btn-browser-safari {
			left: 880px;
			width: 46px;
		}
			.fr-message #btn-browser-safari,
			.es-message #btn-browser-safari  {
				left: 908px;
			}



.gsa-search-autosuggest {
	padding-top: 1em;
	border-top: 1px dashed #bbb;
	display: none;
}

.gsa-search-autosuggest.show-more {
	padding-bottom: 2em;
}

.gsa-search-autosuggest li a .gsa-result-title {
	font-size: .8em;
	color: #0096c8;
}

.gsa-result-title, .gsa-search-autosuggest [class*='icon-'] {
	display: inline-block;
	vertical-align: middle;
}

.gsa-search-autosuggest [class*='icon-'] {
	margin-right: .5em;
	width: 1.4em;
	text-align: center;
}

.gsa-search-autosuggest [class*="icon-"]:before {
	position: relative;
}

.gsa-search-autosuggest li a {
	line-height: 1.7em;
	display: block;
}

.gsa-search-autosuggest li a:hover {
	background: rgba(0,0,0,.1);
}

.autosuggest-footer {
	position: absolute;
	width: 100%;
	left: 0;
	padding: .5em 1em;
	bottom: 0;
	background: #0096c8;
	border-radius: 0 0 20px 20px;
	display: none;
}

.autosuggest-footer a {
	color: #fff !important;
}

#global-header .autosuggest-footer a:hover {
	text-decoration: underline;
}

.gsa-search-autosuggest.is-on.show-more + .autosuggest-footer {
	display: block;
}

@media (max-width: 768px) {
	.gsa-search-autosuggest.is-on + .autosuggest-footer {
		display: block;
	}
	.games-search-autosuggest.is-on + .gsa-search-autosuggest.is-on {
		margin-top: 3em;
	}
}

ul.games-search-autosuggest {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
ul.games-search-autosuggest * {
	box-sizing: content-box;
}

ul.games-search-autosuggest li {
	overflow: hidden;
	position: relative;
	margin-bottom: 1em;
	width: 33.33%;
}

ul.games-search-autosuggest li a.btn-autosuggest-main {
	display: flex;
	align-items: center;
	min-height: 100px;
	text-align: left;
	font-size: 18px;
	transition: all 100ms ease-in-out;
}

ul.games-search-autosuggest li:hover a.btn-autosuggest-main,
ul.games-search-autosuggest li.active a.btn-autosuggest-main,
ul.games-search-autosuggest li.see-all-game-results:hover a {
	background: rgba(0,0,0,.1);
	color: #000;
	text-decoration: none;
}

ul.games-search-autosuggest li.see-all-game-results {
	width: 100%;
}

ul.games-search-autosuggest li.see-all-game-results a {
	color: #000 !important;
}

ul.autosuggest li#see-all-game-results {
	display: block;
}

ul.games-search-autosuggest li p {
	padding-left: 10px;
	margin-bottom: 0;
	line-height: 1.2;
	color: #000;
	flex: 1;
}

.autosuggest-extratext {
	font-size: 12px;
	color: #484848;
	display: block;
	margin-top: 2px;
}

.btn-autosuggest-boxart {
	width: 30%;
	padding: 0 10px;
}
.btn-autosuggest-boxart img {
	width: 100%;
}

@media (max-width: 1286px) {
	ul.games-search-autosuggest li {
		width: calc(100% / 2);
	}
	.btn-autosuggest-boxart {
		width: 27%;
	}
}

@media (max-width: 1100px) {
	ul.games-search-autosuggest li {
		width: 100%;
	}
	.btn-autosuggest-boxart {
		width: 16%;
		min-width: 55px;
	}
}

@media (min-width: 769px) {
	.gsa-search-autosuggest.is-on {
		display: block;
	}
	.gsa-search-autosuggest.is-on ~ .quick-links {
		display: none;
	}
}

@media (max-width: 768px) {
	.games-search-autosuggest.is-on ~ .quick-links {
		display: none;
	}
	.quick-links {
		padding-bottom: 1em;
	}
	.autosuggest-footer {
		border-radius: 0;
	}
}


.pattern-modal-wrapper {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba( 0,0,0,0.5 );

	z-index: 2000;
}

	.locale-modal-alert .locale-modal,
	.demo-modal-alert .demo-modal {
		display: block;
	}

	.pattern-modal {
		background: url(/images/global/pattern-modal/bg.png) #fff repeat;
		max-width: 812px;
		min-height: 360px;
		width: 95%;

		margin: 90px auto 0;

		box-shadow: 0px 4px 0px 0px rgba(0,0,0,0.20);
		border-radius: 4px;
	}

	.pattern-modal-bg-extra {
		background: url(/images/global/pattern-modal/bg-character-pattern.svg) no-repeat right center;

		padding: 35px 55px;
	}

		.pattern-modal p {
			max-width: 391px;
		}

		.pattern-modal .modal-cta-container {
			padding-top: 20px;
		}


	/* These styles are being overridden (even thought hey should be global) */

	.pattern-modal .row .col6 {
		width: 48.57142857% !important;
	}

	/*	-----------------------------------
	Buttons
	----------------------------------- */
/* --- Default button --- */
.pattern-modal .btn {
	background: #2576bc;
	border: 1px solid #1660a0;
	border-radius: 2px;
	color: #fff;
	display: inline-block;
	font-family: 'LatoBold';
	font-size: 20px;
	line-height: 28px;
	padding: 10px 0;
	text-align: center;
	text-decoration: none;
	width: 98%;
	margin: 0 0 0 1%;
}
	.pattern-modal .btn:hover {
		background: #3aa4ff;
		border-color: #3aa4ff;
		color: #fff;
		text-decoration: none;
	}
	
	

	/* --- White button --- */
	/* --- Preview button --- */
	.pattern-modal .btn-white {
		background: #fff;
		border-color: #dadada;
		color: #2576bc !important;
	}
		.btn-white:hover {
			background: #fff !important;
			border-color: #3aa4ff;
			color: #3aa4ff !important;
		}
	/* --- White FILLED button w default text color --- */
	.pattern-modal .btn-white-filled {
		background: #ffffff;
		color: #000;
	}
	.pattern-modal .btn-white-filled:hover {
		/*background: #51fd74 !important;*/
		color: #000;
	}


	
@media screen and (min-width: 600px) and (max-width: 811px) {
	
	.pattern-modal-bg-extra {
		background-size: 30%;
	}

	.pattern-modal p {
    	margin-right: 30%;
	}

}

@media screen and (max-width: 599px) {

	.pattern-modal {
	    margin-top: 110px;
	    overflow: scroll;
    	height: 100%;
    	width: 100%;
    	border-radius: 0;
	}
	
	.pattern-modal-bg-extra {
	    background: transparent;
	    padding: 35px 15px;
	    min-height: 700px;
	}

		.pattern-modal p {
		    margin-right: 0;
		    width: 100%;
		}

		.pattern-modal .cta-container {
		    padding-top: 0px;
		}

			.pattern-modal .btn {
				margin-bottom: 15px;
			}


}

/* 	================================================

	Carousel Widget

	================================================ */

/*	-----------------------------------
	Hero Carousel - CTA button
	----------------------------------- */

.cta-container {
	width: 100%;
	position: absolute;
	right: 0;
	padding-right: -webkit-calc( (100% - 940px) / 2 );
	padding-right: calc( (100% - 940px) / 2 );
}
	@media screen and (min-width: 571px) and (max-width: 768px) {	
		.cta-container {
			padding-right: 10px;
		}
	}

	.cta-inner-container {
		width: 160px;	
		float: right;
	}
	
	body:lang(fr-CA) .cta-inner-container {
		white-space: nowrap;
	}

	.cta-container .btn {
		padding: 10px 15px;
		width: initial;
	}




/*	-----------------------------------
	Default Styles (.multiple)
	----------------------------------- */
div.carousel {
	margin: 0 auto 30px;
	position: relative;
	width: 100%;
}
	div.frame {
		margin: 0 auto;
		max-width: 980px;
		overflow: hidden;
		position: relative;
		width: 100%;
		z-index: 1;
	}
		div.frame.smooth-scroll {
			overflow-x: auto;
			padding-bottom: 10px;

			-webkit-overflow-scrolling: touch;
		}
		
		
		/* Filter Items */
		
		.filtered-row .carousel.multiple {
			z-index: 1;
			top: 3em;
		}
		
		.filtered-row  .filter-selector {
			text-align: right;
			float: right;
			padding-top: 11px;
			z-index: 2;
		}
		
		 section.filtered-row h2.section-title {
			float: left;
			z-index: 2;
		}
		
		.filter-selector .btn-filter {
			display: inline-block;
			padding-bottom: 10px;
		}
		
		
		.filter-all #see-all,
		.filter-all #see-all:hover {
			color: #000;
			cursor: default;
			text-decoration: none;
			border-bottom: 3px solid #999;
		}
		
		.filter-WiiU #see-WiiU,
		.filter-WiiU #see-WiiU:hover {
			color: #000;
			cursor: default;
			text-decoration: none;
			border-bottom: 3px solid #0096c8;
		}
		
		.filter-threeDS #see-threeDS,
		.filter-threeDS #see-threeDS:hover {
			color: #000;
			cursor: default;
			text-decoration: none;
			border-bottom: 3px solid #ce181e;
		}		
		
		.filtered-row  div.frame {
			top: -2em;
		}
		
		div.carousel ul.panels li.filtered-out {
			display: none;
		}
		
		
		
		/* --- Content Items --- */
		div.carousel ul.panels {
			overflow: hidden;
			position: relative;
			width: 100%;
			z-index: 1;
		}
			div.carousel ul.panels > li {
				float: left;
				margin-bottom: 30px;
				position: relative;
				opacity: 0;
				-webkit-tap-highlight-color: rgba(0,0,0,0);
			}
				/* System Logo  */
				div.carousel ul.panels li::after {
					color: #d5d5d5;
					display: block;
					font-family: 'icons';
					height: 20px;
					left: 0;
					position: absolute;
					width: 100%;

				}
				div.carousel ul.panels li.WiiU:after {
					bottom: -30px;
					display: block;
					content: "";
					width: 60px;
					height: 20px;
					background: rgba(0, 0, 0, 0) url('/images/page/whats-new/wiiu-big.png') center center / contain no-repeat;
				}
				
					div.carousel ul.panels li.WiiU:hover:after {
						background: rgba(0, 0, 0, 0) url('/images/page/whats-new/wiiu-hovered-big.png') center center / contain no-repeat;
					}
					
				div.carousel ul.panels li.threeDS:after {
					bottom: -30px;
					display: block;
					content: "";
					width: 110px;
					height: 20px;
					background: rgba(0, 0, 0, 0) url('/images/page/whats-new/threeds-big.png') center center / contain no-repeat;
				}
				
					div.carousel ul.panels li.threeDS:hover:after {
						background: rgba(0, 0, 0, 0) url('/images/page/whats-new/threeds-hovered-big.png') center center / contain no-repeat;
					}

				
				div.carousel ul.panels li.iOSAndroid:after {
					bottom: -30px;
					display: block;
					content: "";
					width: 96px;
					height: 28px;
					background: rgba(0, 0, 0, 0) url('/images/page/whats-new/ios-android-big.png') center center / contain no-repeat;
				}
				
					div.carousel ul.panels li.iOSAndroid:hover:after {
						background: rgba(0, 0, 0, 0) url('/images/page/whats-new/ios-android-hovered-big.png') center center / contain no-repeat;
					}


				div.carousel ul.panels li.Android:after {
					bottom: -30px;
					display: block;
					content: "";
					width: 61px;
					height: 23px;
					background: rgba(0, 0, 0, 0) url('/images/page/whats-new/android-big.png') center center / contain no-repeat;
				}
				
					div.carousel ul.panels li.Android:hover:after {
						background: rgba(0, 0, 0, 0) url('/images/page/whats-new/android-hovered-big.png') center center / contain no-repeat;

					}	

				div.carousel ul.panels li.iOS:after {
					bottom: -30px;
					display: block;
					content: "";
					width: 27px;
					height: 23px;
					background: rgba(0, 0, 0, 0) url('/images/page/whats-new/ios-big.png') center center / contain no-repeat;
				}
				
					div.carousel ul.panels li.iOS:hover:after {
						background: rgba(0, 0, 0, 0) url('/images/page/whats-new/ios-hovered-big.png') center center / contain no-repeat;

					}

					div.carousel ul.panels li img {
						display: block;
					}

					#games .frame.smooth-scroll ul.panels li img,
					#spotlight .frame.smooth-scroll ul.panels li img {
						width: 100%;
					}


				.container {
					overflow: hidden;
					position: relative;
				}
					.container > div {
						opacity: 0;
						position: absolute;
						transition: opacity 400ms;
						-webkit-transition: opacity 400ms;
					}


	/*	--- Next/Prev Navigation --- */
	div.carousel div.nav {
		position: absolute;
		display: none;
		height: 100%;
		top: 0;
		width: 100%;
	}
		div.carousel div.nav div.arrow {
			display: block;
			height: 100%;
			overflow: hidden;
			position: absolute;
			top: 0;
			width: 60px;
		}
		div.carousel div.nav div.prev { left: -2.5%; }
		div.carousel div.nav div.next { right: -2.5%; }
		div.carousel div.nav div.more { display: none; }

			div.carousel div.nav div.arrow a {
				background-image: url('/images/global/sprite-carousel-arrows.png');
				background-repeat: no-repeat;
				display: block;
				height: 60px;
				position: absolute;
				text-decoration: none;
				text-indent: -99999em;
				top: 25%;
				top: -webkit-calc(35% - 30px);
				top: calc(35% - 30px);
				width: 60px;
				z-index: 1;
			}
			div.carousel div.nav div.prev a			{ background-position: 0 0; }
			div.carousel div.nav div.next a			{ background-position: -60px 0; }

			div.carousel div.nav div.prev a:hover	{ background-position: 0 -60px; }
			div.carousel div.nav div.next a:hover	{ background-position: -60px -60px; }

	/* --- Pagination --- */
	div.carousel ul.carousel-pagination {
		margin: 30px 0;
		overflow: hidden;
		position: relative;
		text-align: center;
		z-index: 1;
	}
		div.carousel ul.carousel-pagination li {
			display: inline-block;
			margin: 5px;
			position: relative;
			width: 30px;
		}
			div.carousel ul.carousel-pagination li a {
				display: block;
				position: relative;
				text-decoration: none;
				z-index: 1;
			}

			div.carousel ul.carousel-pagination li span {
				background: #e0e0e0;
				border: 1px solid #e0e0e0;
				border-radius: 2px;
				cursor: pointer;
				display: block;
				height: 4px;
				text-indent: -99999em;
			}
			div.carousel ul.carousel-pagination li.is-active span {
				background: #2576bc;
				border-color: #1660a0;
			}
			div.carousel ul.carousel-pagination li a:hover span {
				background: #3aa4ff;
				border-color: #3aa4ff;
			}

/*	-----------------------------------
	Detail Hero Carousel - Games Detail Page
	----------------------------------- */


		/*	--- Next/Prev Navigation --- */
		div.carousel.hero div.nav,
		div.carousel.sibling-hero div.nav {}

			div.carousel.hero div.nav div.arrow,
			div.carousel.sibling-hero div.nav div.arrow {
				width: 100px;
			}
			div.carousel.hero div.nav div.prev,
			div.carousel.sibling-hero div.nav div.prev { left: 0; }
			div.carousel.hero div.nav div.next,
			div.carousel.sibling-hero div.nav div.next { right: 0; }

				div.carousel.hero div.nav div.arrow a,
				div.carousel.sibling-hero div.nav div.arrow a {
					background: rgba(0,0,0,0.27);
					border: 5px solid rgba(255,255,255,0.27);
					border-radius: 50%;
					height: 64px;
					left: 18px;
					opacity: 0;
					top: 30%;
					top: -webkit-calc(45% - 30px);
					top: calc(45% - 30px);
					width: 64px;
					-webkit-transition: opacity 0.5s;
					   -moz-transition: opacity 0.5s;
						-ms-transition: opacity 0.5s;
						 -o-transition: opacity 0.5s;
							transition: opacity 0.5s;
				}
				div.carousel.hero:hover div.nav div.arrow a,
				div.carousel.sibling-hero:hover div.nav div.arrow a {
					opacity: 1;
				}
					div.carousel.hero div.nav div.arrow a:before,
					div.carousel.sibling-hero div.nav div.arrow a:before {
						font-size: 40px;
						line-height: 54px;
						text-align: center;
					}
					div.carousel.hero div.nav div.prev a:before,
					div.carousel.sibling-hero div.nav div.prev a:before { left: 4px; }
					div.carousel.hero div.nav div.next a:before,
					div.carousel.sibling-hero div.nav div.next a:before { right: 4px; }




/*	-----------------------------------
	Hero Carousel - Center Stage
	----------------------------------- */
div.carousel.hero {
}
	div.carousel.hero div.frame {
		max-width: 1200px;
	}

		/* --- Content Items --- */
		div.carousel.hero ul.panels li {
			margin-bottom: 0;
			text-align: center;
			border: none;
		}
		div.carousel.hero ul.panels li:after {
			display: none;
		}

		div.carousel.hero ul.panels li .hero-img {
			background-position: center top;
			background-repeat: no-repeat;
			background-size: cover;
			display: block;
			max-height: 510px;
			padding-bottom: 42.5%; /* Initially set height to 1200x510 */
			width: 100%;
			position: relative;
			z-index: -1;
			height:50px;

			/* 56.25% = 16x9 */
		}

		div.carousel.hero ul.panels li .hero-img.image-overlay {
			z-index: 1;
		}
		
		a div.hero-esrb {
			display: table;
			background-color: #fff;	
			vertical-align: top;
			border: solid 1px white;
		}
		
			a div.hero-esrb-icon {
				width: 47px;
			}
			a div.hero-esrb-desc {
				display: table-cell;
				vertical-align: middle;
				color: #000;				
				border-width: 3px 3px 3px 0;
				border-color: black;
				border-style: solid;
				-moz-box-sizing: border-box;
				margin-left: -3px;
				width: 120px;
				overflow: hidden;
				position: relative;
				left: -1px;
			}
				.hero-esrb-desc p {
					margin-bottom: 1px;
					font-size: 10px;
					line-height: 1.1;
					padding-left: 5px;
					text-align: left !important;
				}

		/* Adjust image to display 980x510 and scale accordingly */
		@media screen and (max-width: 1080px) {
			div.carousel.hero ul.panels li .hero-img {
				padding-bottom: 48%;
			}
		}
		@media screen and (max-width: 1024px) {
			div.carousel.hero ul.panels li .hero-img {
				padding-bottom: 50%;
			}
		}
		@media screen and (max-width: 980px) {
			div.carousel.hero ul.panels li .hero-img {
				padding-bottom: 53%;
			}
		}
		@media screen and (max-width: 768px) {
			div.carousel.hero ul.panels li .hero-img {
				padding-bottom: 59%;
			}
		}
		@media screen and (max-width: 570px) {
			div.carousel.hero ul.panels li .hero-img {
				padding-bottom: 62%;
			}
		}

			/* --- Slide Info --- */
			div.carousel.hero div.info-bar {
				background: rgba(0,0,0, 0.7);
				height: 110px;
				opacity: 1;
				position: absolute;
				bottom: 0;
				width: 100%;
				z-index: 1;
			}
				div.carousel.hero div.info-bar a {
					text-decoration: none;
				}
					div.carousel.hero div.info-bar div.inner-content {
						border: none;
						margin: 10px auto;
						max-width: 980px;
						position: relative;
					}

						/* Inline Images */
						div.carousel.hero div.info-bar img {
							display: inline-block;
							vertical-align: middle;
						}
						/* Title */
						.carousel.hero .info-bar h3, 
						.carousel.hero .info-bar .h3 {
							color: #fff;
							letter-spacing: -1px;
							line-height: 1;
							margin: 5px auto;
							text-align: center;
						}
							
							/*
							div.carousel.hero div.info-bar .txt-dark  h3 {
								color: #000;
							}
							*/
						/* Sub Text */
						div.carousel.hero div.info-bar p {
							text-align: center;
						}
							div.carousel.hero div.info-bar .txt-dark  p {
								color: #000;
							}

				div.carousel.hero .BGImage {
					opacity: 0;
					width: 100%;
					height: 100%;
					position: absolute;
					top: 0;
					background-position: center center;
				}

					div.carousel.hero .BGImage .overlayWide {
						background: rgba(0,0,0, 0.7);
						width: 100%;
				    	position: absolute;
				    	bottom: 0;
					}

		/* --- Pagination --- */
		div.carousel.hero ul.carousel-pagination {
			bottom: -1px;
			margin: auto;
			padding-right: -webkit-calc( (100% - 940px) / 2 );
			padding-right: calc( (100% - 940px) / 2 );
			position: absolute;
			text-align: right;
			width: 100%;
		}
			div.carousel.hero ul.carousel-pagination li {
				height: 30px;
				line-height: 30px;
				text-align: center;
			}
			div.carousel.hero ul.carousel-pagination li a,
			div.carousel.hero ul.carousel-pagination li a:hover {
				background: none;
				border: none;
				padding: 0;
			}
			div.carousel.hero ul.carousel-pagination li span,
			div.carousel.hero ul.carousel-pagination li a:hover span {
				background: url('/images/global/sprite-carousel-pagination.png') 0 0 no-repeat;
				border: none;
				color: #3aa4ff;
				cursor: pointer;
				display: block;
				height: 100%;
				text-indent: 0;
				width: 100%;
			}
				/* Dark Theme - default */
				div.carousel.hero ul.carousel-pagination li.is-active span			{ background-position: -30px -30px; color: #fff; }
				div.carousel.hero ul.carousel-pagination li.step1 span				{ background-position: -60px -30px; }
				div.carousel.hero ul.carousel-pagination li.step2 span				{ background-position: -90px -30px; }
				div.carousel.hero ul.carousel-pagination li.step3 span				{ background-position: -120px -30px; }
				div.carousel.hero ul.carousel-pagination li.step4 span				{ background-position: -150px -30px; }

				/* Light Theme */
				div.carousel.hero.light ul.carousel-pagination li.is-active span	{ background-position: -30px -60px; color: #000; }
				div.carousel.hero.light ul.carousel-pagination li.step1 span		{ background-position: -60px -60px; }
				div.carousel.hero.light ul.carousel-pagination li.step2 span		{ background-position: -90px -60px; }
				div.carousel.hero.light ul.carousel-pagination li.step3 span		{ background-position: -120px -60px; }
				div.carousel.hero.light ul.carousel-pagination li.step4 span		{ background-position: -150px -60px; }

				/* Hover State */
				div.carousel.hero ul.carousel-pagination li a:hover span,
				div.carousel.hero ul.carousel-pagination li.is-active a:hover span	{ background-position: -30px 0; }
				div.carousel.hero ul.carousel-pagination li.step1 a:hover span		{ background-position: -60px 0; }
				div.carousel.hero ul.carousel-pagination li.step2 a:hover span		{ background-position: -90px 0; }
				div.carousel.hero ul.carousel-pagination li.step3 a:hover span		{ background-position: -120px 0; }
				div.carousel.hero ul.carousel-pagination li.step4 a:hover span		{ background-position: -150px 0; }


	div.carousel.hero ul.carousel-pagination li:first-child:before,
	div.carousel.hero ul.carousel-pagination li:last-child:after {
		bottom: -5px;
		content: '';
		cursor: default;
		display: block;
		height: 20px;
		position: absolute;
		width: 10000em;
		z-index: -1;
	}
	div.carousel.hero.hero ul.carousel-pagination li:first-child:before {
		background: url('/images/global/sprite-carousel-pagination-bar.png') right 0 no-repeat;
		right: 20px;
	}
	div.carousel.hero ul.carousel-pagination li:last-child:after {
		background: url('/images/global/sprite-carousel-pagination-bar.png') 0 -20px no-repeat;
		left: 20px;
	}

	div.carousel.hero div.video-container {
	    position: absolute;
	    top: -50%;
	    left: -50%;
	    width: 200%;
	    height: 200%;
	    overflow: hidden;
	}

		div.carousel.hero div.video-container video {
			position: absolute;
		    top: 0;
		    bottom: 0;
		    right: 0;
		    left: 0;
		    margin: auto;
		    min-height: 50%;
		    max-height: 50%;
		    min-width: 50%;
		}
	div.carousel.hero .mob-image-container {
		display: none;
	}

	/* Miitomo Specific */

	div.carousel.hero .play-store-badge,
	div.carousel.hero .miitomo-promo.h3,
	div.carousel.hero .app-store-badge { 
		margin-right: 10px;
		cursor: pointer;
	}

	div.carousel.hero .miitomo-promo {
		vertical-align: middle;
	}

		div.carousel.hero .miitomo-promo .cta-inner-container {
			display: none;
		}

			div.carousel.hero .miitomo-promo .cta-inner-container .miitomo-btn {
				vertical-align: middle;
				padding: 3px 20px !important;
			}

/* 	================================================

	TABLET VIEW

	================================================ */
@media screen and (min-width: 571px) and (max-width: 768px) {

/*	-----------------------------------
	Default Styles (.multiple)
	----------------------------------- */
	div.carousel div.nav div.arrow {
		display: none;
	}
	div.carousel ul.carousel-pagination {
		margin: 0;
	}

		div.carousel ul.carousel-pagination li {
			width: 20px;
		}
				div.carousel ul.carousel-pagination li a {
					padding: 18px 0;
				}

/*	-----------------------------------
	Hero Carousel
	----------------------------------- */
	div.carousel.hero ul.carousel-pagination {
		padding-right: 10px;
	}
		div.carousel.hero ul.carousel-pagination li {
			width: 30px;
		}

/*	-----------------------------------
	Thumbnail Carousel
	----------------------------------- */
	div.carousel.sibling-thumbs div.nav div.arrow {
		/* display: block; */
	}
	
/*	-----------------------------------
	Filter Items
	----------------------------------- */
		
	.filtered-row .filter-selector {
		text-align: left;
		padding-bottom: 1em;
		float: none;
	}
	
	.filtered-row div.frame {
		top: 0;
	}
		section.filtered-row h2.section-title {
			float: none;
		}
	
}

/* 	================================================

	MOBILE VIEW

	================================================ */
@media screen and (max-width: 768px) {

/*	-----------------------------------
	Default Styles (.multiple)
	----------------------------------- */
	.wrapper.gutter div.carousel {
		width: 102%; /* extend carousel to right edge on wrappers with padding (WiiU/3DS pages) */
	}
	div.carousel div.nav,
	div.carousel ul.carousel-pagination {
		display: none;
		opacity: 0;
	}
	div.carousel ul.carousel-pagination {
		margin: 0;
	}
		div.carousel ul.carousel-pagination li a {
			padding: 18px 0;
		}
	div.carousel ul.panels li.WiiU:after {
		font-size: 10px;
	}
	div.carousel ul.panels li.threeDS:after {
		font-size: 16px;
	}

/*	-----------------------------------
	Hero Carousel
	----------------------------------- */
	div.carousel.hero ul.panels,
	div.carousel.hero ul.panels li {
		padding-bottom: 30px;
	}
		div.carousel.hero div.info-bar {
			background: -moz-linear-gradient(top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,1) 40%);
			background: -webkit-linear-gradient(top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,1) 40%);
			background: -o-linear-gradient(top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,1) 40%);
			background: -ms-linear-gradient(top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,1) 40%);
			background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,1) 40%);
			bottom: -30px;
			height: 90px;
		}
			div.carousel.hero div.info-bar div.inner-content {
				margin: 20px auto 0;
			}

				div.carousel.hero div.info-bar h3 {
					font-size: 18px;
				}

	div.carousel.hero ul.carousel-pagination {
		display: block;
		opacity: 1;
		padding-right: 0;
		text-align: center;
	}

	div.carousel.hero div.nav {
		display: none;
	}

	div.carousel.hero .video-container {
		display: none;
	}

	div.carousel.hero .mob-image-container {
		position: absolute;
		top: 0;
		display: block;
	}

/*	-----------------------------------
	Accordion Drawer Carousel
	----------------------------------- */
	div.carousel.drawer {
		background: #fafafa;
		background: -moz-linear-gradient(bottom, #f8f8f8 0%, #fafafa 75%, #fff 100%);
		background: -webkit-linear-gradient(bottom, #f8f8f8 0%, #fafafa 75%, #fff 100%);
		background: -o-linear-gradient(bottom, #f8f8f8 0%, #fafafa 75%, #fff 100%);
		background: -ms-linear-gradient(bottom, #f8f8f8 0%, #fafafa 75%, #fff 100%);
		background: linear-gradient(to top, #f8f8f8 0%, #fafafa 75%, #fff 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f8f8f8',GradientType=0 );
		margin-bottom: 0;
		padding-bottom: 60px;
	}
		div.carousel.drawer div.nav {
			background: #fff;
			border-top: 1px solid #f2f2f2;
			bottom: 0;
			height: 30px;
			opacity: 1;
			top: auto;
			display:block;
		}
			div.carousel.drawer div.nav div.next,
			div.carousel.drawer div.nav div.prev {
				display: none;
			}
			div.carousel.drawer div.nav div.more {
				bottom: 30px;
				display: block !important;
				overflow: visible;
				top: auto;
				width: 100%;
			}
				div.carousel.drawer div.nav div.more a {
					left: 40%;
					left: -webkit-calc(50% - 30px);
					left: calc(50% - 30px);
					top: 0;
				}
				/* add full background path for iOS 6 bug fix */
				div.carousel.drawer div.nav div.open a {
					background: url('/images/global/sprite-carousel-arrows.png') 0 -240px no-repeat;
				}
				div.carousel.drawer div.nav div.closed a {
					background: url('/images/global/sprite-carousel-arrows.png') -60px -240px no-repeat;
				}
/*	-----------------------------------
	Filter Items
	----------------------------------- */
		
	.filtered-row  .filter-selector {
		text-align: left;
		padding-bottom: 1em;
		float: none;
	}
		 section.filtered-row h2.section-title {
			float: none;
		}
		
		.filtered-row  div.frame {
			top: 0;
		}

}

/* 	================================================

	3DS Browser Specific Styles

	================================================ */

body.nin3DS div.carousel.multiple ul.carousel-pagination {
	opacity: 1;
}
body.nin3DS div.carousel ul.panels li:after {
	display: none;
}

.carousel.hero ul.panels {
	padding-bottom: 0 !important;
}
.carousel.hero ul.panels li {
	padding-bottom: 0 !important;
}
.carousel.hero ul.panels li .info-bar {
	bottom: 0;
	height: auto;
	padding: 0 1% 25px;
}

@media screen and (max-width: 570px) {
	.carousel.hero ul.panels li .info-bar {
		padding-bottom: 30px !important;
	}
	.carousel.hero ul.panels li .info-bar.no-pag {
		padding-bottom: 0 !important;
	}
}

.carousel.hero ul.panels li .info-bar.no-pag {
	padding: 0 1%;
}

div.carousel.hero div.info-bar div.inner-content {
	margin: 0 auto;
	padding: 10px 0 20px;
	font-size: 0;
}

div.carousel.hero div.info-bar.no-pag div.inner-content {
	padding: 10px 0;
}

div.carousel.hero div.info-bar div.inner-content div.column {
	display: inline-block;
	vertical-align: middle;
	float: none;
}

div.carousel.hero div.info-bar .cta-inner-container {
	float: none;
	width: auto;
	text-align: right;
}
div.carousel.hero div.info-bar .cta-inner-container .btn {
	width: auto;
	padding: 10px 20px;
}


/*	-------------------------------------------------------
	Featured Games Tabswitcher (3DS/WiiU homepage, 3DS StreetPass)
	-------------------------------------------------------*/
section#featured-games {
	margin-bottom: 20px;
}
	section#featured-games ul.featured-titles {}
		section#featured-games ul.featured-titles li {
			display: block;
		}
			section#featured-games ul.featured-titles:before,
			section#featured-games ul.featured-titles:after {
				background: #2576bc;
				content: '';
				height: 30px;
				left: 0;
				position: absolute;
				width: 100%;
			}
			section#featured-games ul.featured-titles:before {
				top: -30px;
			}
			section#featured-games ul.featured-titles:after {
				bottom: -30px;
			}

	/* --- Titles/Navigation --- */
	header.featured-header {
		display: block;
		margin-bottom: 20px;
	}
		header.featured-header > div {
			float: left;
			overflow: hidden;
		}
		/* Static Title */
		header.featured-header h2 {
			display: block;
			float: left;
			line-height: 2em;
			margin: 0;
		}
		/* Dynamic Title/Links */
		ul.featured-titles {
			background: #2576bc;
			display: block;
			float: left;
			margin: 0 10px;
			width: 370px;
		}
			ul.featured-titles a {
				color: #fff;
				display: block;
				font-family: 'LatoBold';
				line-height: 2em;
				overflow: hidden;
				padding: 0 40px 0 15px;
				position: relative;
				text-decoration: none;
				text-overflow: ellipsis;
				white-space: nowrap;
			}
			ul.featured-titles a:hover {
				background: #3aa4ff;
			}
			ul.featured-titles a:before {
				display: block;
				font-family: 'icons';
				font-size: 18px;
				line-height: .7;
				right: 20px;
				top: 18px;
			}
		/* Nav Arrows */
		ul.tab-next-prev {
			display: none;
			float: left;
			height: 100%;
		}
			ul.tab-next-prev li {
				display: block;
				height: 30px;
				width: 30px;
			}
				ul.tab-next-prev li a {
					display: block;
					height: 100%;
					position: relative;
					text-decoration: none;
					text-indent: -99999em;
					width: 100%;
				}
					ul.tab-next-prev li a:before {
						font-size: 20px;
						line-height: 30px;
						text-align: center;
						width: 100%;
					}

	/* -- Featured Games --- */
	div.tab-content ul.games {
		display: none;
	}
	div.tab-content ul.games.active {
		display: block;
	}
		/* Line between rows */
		ul.games li {
			padding-bottom: 10px;
			padding-top: 30px;
		}

		ul.games a {
			color: #999;
			display: block;
			margin: 0 auto;
			/* max-width: 140px; */
			text-decoration: none;
			text-align: center;
		}
			ul.games div.boxart {
				display: block;
				margin: 10px auto;
				/*max-height: 200px;*/
				max-width: 157px; 
				padding-bottom: 143%;
				position: relative;
				text-align: center;
				width: 100%;
			}
				ul.games div.boxart img {
					bottom: 0;
					display: block;
					left: 0;
					margin: 0 auto;
					position: absolute;
					right: 0;
				}
			ul.games div.fb-like {
				display: block;
				margin: 15px auto;
				text-align: center;
			}
			ul.games .btn {
				margin-bottom: 20px;
				max-width: 157px;
				-webkit-backface-visibility:hidden; /* Chrome, Safari, Opera */
				backface-visibility:hidden;
			}
			ul.games h3 {
				margin: 0 0 5px;
				text-align: center;
				word-wrap: break-word;
			}

		/* Hover States */
		ul.games a:hover h3.b3 {
			color: #3aa4ff;
		}





/* 	================================================

	DESKTOP VIEW

	================================================ */
@media screen and (min-width: 769px) {


/*	-----------------------------------
	Featured Games Tabswitcher
	----------------------------------- */
	section#featured-games {
		padding-top: 0;
	}

}


/* 	================================================

	TABLET VIEW

	================================================ */
@media screen and (min-width: 571px) and (max-width: 768px) {

/*	-----------------------------------
	Featured Games Tabswitcher
	----------------------------------- */
	/* Dynamic Title/Links */
	ul.featured-titles {
		width: 320px;
	}
		ul.featured-titles a {
			padding-right: 40px;
		}
		ul.featured-titles a:before {
			font-size: 14px;
			top: 16px;
		}
	/* Nav Arrows */
	ul.tab-next-prev {
		display: none;
	}

}


/* 	================================================

	MOBILE VIEW

	================================================ */
@media screen and (max-width: 570px) {

/*	-----------------------------------
	Featured Games Tabswitcher
	----------------------------------- */
	section#featured-games {
		border-top: 1px solid #dadada;
	}
	/* --- Title Navigation --- */
	/* Static Title */
	header.featured-header h2 {
		float: none;
	}
	/* Dynamic Title/Links */
	ul.featured-titles {
		display: inline-block;
		float: none;
		margin: 0;
		vertical-align: top;
		width: 308px;
	}
		ul.featured-titles a {
			padding-right: 40px;
		}
		ul.featured-titles a:before {
			font-size: 14px;
			top: 16px;
		}
	/* Nav Arrows */
	ul.tab-next-prev {
		display: none;
	}

	/* -- Featured Games --- */
	ul.games div.boxart {
		padding-bottom: 126%%;
	}
	ul.games li {
		padding-bottom: 20px;
		padding-top: 20px;
	}
		ul.games li:first-child:before {
			display: none;
		}
			ul.games .btn {
				display: none;
			}
}


/*	-----------------------------------
	Section Header
	----------------------------------- */
header#section-header {
	position: relative;
	width: 100%;
}

	header#section-header div.pin {
		height: 60px;
		padding: 10px 0;
		position: relative;
		width: 100%;
		z-index: 20;
		-webkit-backface-visibility: hidden;
	}
	header#section-header div.pin:after {
		clear: both;
		content: '';
		display: block;
	}
	body.pin-nav header#section-header div.pin {
		position: fixed;
	}
	body.pin-shadow header#section-header div.pin {
		box-shadow: 0 3px 5px rgba(0,0,0,0.1);
	}
		header#section-header div.wrapper {
			position: relative;
		}
			/* --- Logo --- */
			header#section-header h1 {
				display: block;
				float: left;
				font-size: 0;
			}
				header#section-header h1 a {
					display: block;
					height: 100%;
				}
				header#section-header h1 a:hover {
					border: none;
				}
					header#section-header h1 img {
						max-height: 100%;
						vertical-align: middle;
					}

			/* --- Secondary Nav --- */
			nav.secondary-nav {
				display: block;
				float: right;
				font-family: 'LatoBold';
				position: relative;
			}
				/* Active Item */
				nav.secondary-nav a.nav-toggle {
					display: none;
				}
				nav.secondary-nav a {
					color: #fff;
					text-decoration: none;
				}
				nav.secondary-nav ul {
					text-align: center;
				}

	/* Nav position based on chrome movement */
	body.pin-nav.not-at-top header#section-header div.pin {

		-webkit-transition: top 0.8s cubic-bezier(0.6, 0, 0.4, 1);
		   -moz-transition: top 0.8s cubic-bezier(0.6, 0, 0.4, 1);
			-ms-transition: top 0.8s cubic-bezier(0.6, 0, 0.4, 1);
			 -o-transition: top 0.8s cubic-bezier(0.6, 0, 0.4, 1);
				transition: top 0.8s cubic-bezier(0.6, 0, 0.4, 1);
	}

	body.pin-nav:not(.scrolling-up) header#section-header div.pin {
		top: 0px !important;
	}	

/*	-----------------------------------
	3DS Specific
	----------------------------------- */
	body#threeDS-page.pin-nav header#section-header div.pin {
		background: rgba(255,255,255,0.9);
	}
		/* --- Logo --- */
		body#threeDS-page header#section-header h1 {
			height: 40px;
		}
			body#threeDS-page header#section-header h1 a:after {
				content: '';
				display: inline-block;
				height: 100%;
				position: relative;
				vertical-align: middle;
			}
		/* --- Secondary Nav --- */
		/* Hover, Focus, Active States */
		body#threeDS-page nav.secondary-nav ul li a:focus,
		body#threeDS-page nav.secondary-nav ul li a:hover {
			background: rgba(255,0,8,0.5);
		}
		body#threeDS-page nav.secondary-nav ul li.active a {
			background: #ff0008;
		}




/*	-----------------------------------
	Wii U Specific
	----------------------------------- */
	body#wiiu-page.pin-nav header#section-header div.pin {
		background: rgba(0,0,0,0.8);
	}
		/* --- Secondary Nav --- */
		/* Hover, Focus, Active States */
		body#wiiu-page nav.secondary-nav ul li a:focus,
		body#wiiu-page nav.secondary-nav ul li a:hover {
			background: rgba(0,190,255,0.5);
		}
		body#wiiu-page nav.secondary-nav ul li.active a {
			background: #00beff;
		}
		
/*	-----------------------------------
	Game Store Specific
	----------------------------------- */
	
	body#games-page.pin-nav header#section-header div.pin,
	body#games-page:not(.pin-nav) header#section-header {
		background-image: url('/images/page/games/secondary-nav-bg.png');
		background-position: center top;
		background-repeat: repeat-x;
	}
		/* --- Secondary Nav --- */
		/* Hover, Focus, Active States */
		body#games-page nav.secondary-nav ul li a:focus,
		body#games-page nav.secondary-nav ul li a:hover {
			background: rgba(247,164,0,0.5);
		}
		body#games-page nav.secondary-nav ul li.active a {
			background: #F7A400;
		}		
/*	-----------------------------------
	Buy Digital Specific
	----------------------------------- */
	
	body#buy-digital-page.pin-nav header#section-header div.pin,
	body#buy-digital-page:not(.pin-nav) header#section-header {
		background-image: url('/images/page/games/secondary-nav-bg.png');
		background-position: center top;
		background-repeat: repeat-x;
	}
		/* --- Secondary Nav --- */
		/* Hover, Focus, Active States */
		body#buy-digital-page nav.secondary-nav ul li a:focus,
		body#buy-digital-page nav.secondary-nav ul li a:hover {
			background: rgba(247,164,0,0.5);
		}
		body#buy-digital-page nav.secondary-nav ul li.active a {
			background: #F7A400;
		}		
		
/*	-----------------------------------
	eShop Specific
	----------------------------------- */
	body#eshop-page.pin-nav header#section-header div.pin {
		background: rgba(255,255,255,0.9);
	}
	
	body#eshop-page header#section-header h1 {
		height: 40px;
	}
	
	
		body#eshop-page header#section-header h1 a:after {
				content: '';
				display: inline-block;
				height: 100%;
				position: relative;
				vertical-align: middle;
			}
	
	
		/* --- Secondary Nav --- */
		/* Hover, Focus, Active States */
		body#eshop-page nav.secondary-nav ul li a:focus,
		body#eshop-page nav.secondary-nav ul li a:hover {
			background: rgba(248,202,29,0.5);
		}
		body#eshop-page nav.secondary-nav ul li.active a {
			background: #e46511;
		}
		
/*	-----------------------------------
	amiibo Specific
	----------------------------------- */
	body#amiibo-page.pin-nav header#section-header div.pin {
		background: rgba(255,255,255,0.9);
		height: 70px;
	}
	
	body#amiibo-page header#section-header h1 {
		height: 40px;
	}
	
	
		body#amiibo-page header#section-header h1 a:after {
				content: '';
				display: inline-block;
/*				height: 100%;*/
				position: relative;
				vertical-align: middle;
			}
			
		body#amiibo-page nav.secondary-nav ul li {
			background: transparent;
			/*
			-webkit-box-shadow: 1px 1px 6px 0px rgba(0,0,0,0.1);
			-moz-box-shadow: 1px 1px 6px 0px rgba(0,0,0,0.1);
			box-shadow: 1px 1px 6px 0px rgba(0,0,0,0.1);
			*/
		}
	
		/* --- Secondary Nav --- */
		/* Hover, Focus, Active States */
		
		
		body#amiibo-page nav.secondary-nav ul li.whats a {
			background: #e6001e; /* Old browsers */
			background: -moz-linear-gradient(top,  #e6001e 0%, #ee4c61 100%); /* FF3.6+ */
			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e6001e), color-stop(100%,#ee4c61)); /* Chrome,Safari4+ */
			background: -webkit-linear-gradient(top,  #e6001e 0%,#ee4c61 100%); /* Chrome10+,Safari5.1+ */
			background: -o-linear-gradient(top,  #e6001e 0%,#ee4c61 100%); /* Opera 11.10+ */
			background: -ms-linear-gradient(top,  #e6001e 0%,#ee4c61 100%); /* IE10+ */
			background: linear-gradient(to bottom,  #e6001e 0%,#ee4c61 100%); /* W3C */
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6001e', endColorstr='#ee4c61',GradientType=0 ); /* IE6-9 */

		}
		
		body#amiibo-page nav.secondary-nav ul li.games a{
			background: #a5c810; /* Old browsers */
			background: -moz-linear-gradient(top,  #a5c810 0%, #c0d957 100%); /* FF3.6+ */
			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a5c810), color-stop(100%,#c0d957)); /* Chrome,Safari4+ */
			background: -webkit-linear-gradient(top,  #a5c810 0%,#c0d957 100%); /* Chrome10+,Safari5.1+ */
			background: -o-linear-gradient(top,  #a5c810 0%,#c0d957 100%); /* Opera 11.10+ */
			background: -ms-linear-gradient(top,  #a5c810 0%,#c0d957 100%); /* IE10+ */
			background: linear-gradient(to bottom,  #a5c810 0%,#c0d957 100%); /* W3C */
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a5c810', endColorstr='#c0d957',GradientType=0 ); /* IE6-9 */
		}
		
		body#amiibo-page nav.secondary-nav ul li.lineup a {
			background: #e6001e; /* Old browsers */
			background: -moz-linear-gradient(top,  #009beb 0%, #4cb9f1 100%); /* FF3.6+ */
			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#009beb), color-stop(100%,#4cb9f1)); /* Chrome,Safari4+ */
			background: -webkit-linear-gradient(top,  #009beb 0%,#4cb9f1 100%); /* Chrome10+,Safari5.1+ */
			background: -o-linear-gradient(top,  #009beb 0%,#4cb9f1 100%); /* Opera 11.10+ */
			background: -ms-linear-gradient(top,  #009beb 0%,#4cb9f1 100%); /* IE10+ */
			background: linear-gradient(to bottom,  #009beb 0%,#4cb9f1 100%); /* W3C */
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#009beb', endColorstr='#4cb9f1',GradientType=0 ); /* IE6-9 */
		}
		
		body#amiibo-page nav.secondary-nav ul li.compatibility a {
			background: #e6001e; /* Old browsers */
			background: -moz-linear-gradient(top,  #009682 0%, #4cb5a7 100%); /* FF3.6+ */
			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#009682), color-stop(100%,#4cb5a7)); /* Chrome,Safari4+ */
			background: -webkit-linear-gradient(top,  #009682 0%,#4cb5a7 100%); /* Chrome10+,Safari5.1+ */
			background: -o-linear-gradient(top,  #009682 0%,#4cb5a7 100%); /* Opera 11.10+ */
			background: -ms-linear-gradient(top,  #009682 0%,#4cb5a7 100%); /* IE10+ */
			background: linear-gradient(to bottom,  #009682 0%,#4cb5a7 100%); /* W3C */
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#009682', endColorstr='#4cb5a7',GradientType=0 ); /* IE6-9 */
		}
		
		body#amiibo-page nav.secondary-nav ul li.faq a {
			background: #e6001e; /* Old browsers */
			background: -moz-linear-gradient(top,  #f5aa00 0%, #f8c34c 100%); /* FF3.6+ */
			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5aa00), color-stop(100%,#f8c34c)); /* Chrome,Safari4+ */
			background: -webkit-linear-gradient(top,  #f5aa00 0%,#f8c34c 100%); /* Chrome10+,Safari5.1+ */
			background: -o-linear-gradient(top,  #f5aa00 0%,#f8c34c 100%); /* Opera 11.10+ */
			background: -ms-linear-gradient(top,  #f5aa00 0%,#f8c34c 100%); /* IE10+ */
			background: linear-gradient(to bottom,  #f5aa00 0%,#f8c34c 100%); /* W3C */
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5aa00', endColorstr='#f8c34c',GradientType=0 ); /* IE6-9 */
		}
		
		body#amiibo-page nav.secondary-nav ul li.buynow a {
			background: #e6001e; /* Old browsers */
			background: -moz-linear-gradient(top,  #e62daa 0%, #ee6cc3 100%); /* FF3.6+ */
			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e62daa), color-stop(100%,#ee6cc3)); /* Chrome,Safari4+ */
			background: -webkit-linear-gradient(top,  #e62daa 0%,#ee6cc3 100%); /* Chrome10+,Safari5.1+ */
			background: -o-linear-gradient(top,  #e62daa 0%,#ee6cc3 100%); /* Opera 11.10+ */
			background: -ms-linear-gradient(top,  #e62daa 0%,#ee6cc3 100%); /* IE10+ */
			background: linear-gradient(to bottom,  #e62daa 0%,#ee6cc3 100%); /* W3C */
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e62daa', endColorstr='#ee6cc3',GradientType=0 ); /* IE6-9 */
		}

		body#amiibo-page nav.secondary-nav ul li a {
			-webkit-transition: all 150ms ease-in-out;
				-moz-transition: all 150ms ease-in-out;
				-ms-transition: all 150ms ease-in-out;
				-o-transition: all 150ms ease-in-out;
				transition: all 150ms ease-in-out;
		}
		
		


/* 	================================================

	DESKTOP VIEW

	================================================ */
@media screen and (min-width: 769px) {

/*	-----------------------------------
	Section Header
	----------------------------------- */
	header#section-header {
		min-height: 100px;
		overflow: hidden;
	}
		header#section-header div.pin {
			top: 20px;
		}
			/* --- Logo --- */
			header#section-header h1 {
				max-width: 18%;
			}

			/* --- Secondary Nav --- */
			nav.secondary-nav {
				font-size: 14px;
			}
				nav.secondary-nav ul {
					border-radius: 2px;
					height: 40px;
					padding: 0;
					text-align: center;
				}
					nav.secondary-nav ul li {
						display: inline-block;
						height: 100%;
						line-height: 40px;
						margin: 0 -2px 0 -1px;
					}
						nav.secondary-nav ul li a {
							display: block;
							height: 100%;
							padding: 0 20px;
							vertical-align: middle;
						}

/*	-----------------------------------
	3DS Specific
	----------------------------------- */
	/* --- Secondary Nav --- */
	body#threeDS-page nav.secondary-nav ul {
		background: #ce181e;
	}
	
/*	-----------------------------------
	Games Specific
	----------------------------------- */
	/* --- Secondary Nav --- */
	body#games-page nav.secondary-nav ul,
	body#buy-digital-page nav.secondary-nav ul {
		background: #FF7D00;
	}
	
	/* Game Guide */
	body.games-landing.pin-nav.not-at-top header#section-header div.pin {
		
	}
	
	
/*	-----------------------------------
	eshop Specific
	----------------------------------- */
	/* --- Secondary Nav --- */
	body#eshop-page nav.secondary-nav ul {
		background: #f47b2b;
	}
	
	/* --- Logo --- */
	body#eshop-page	header#section-header h1 {
				max-width: 20%;
			}

/*	-----------------------------------
	amiibo Specific
	----------------------------------- */
	/* --- Secondary Nav --- */
	body#amiibo-page nav.secondary-nav ul {
		background: transparent;
	}
	
	/* spacer */
	.nav-spacer {
		visibility: hidden;
		width: 1px;
		cursor: default;
	}
	
	body#amiibo-page nav.secondary-nav ul li {
		background: transparent;
		margin: 0 2px;
		border-radius: 2px;
	}	
	
	/* --- Logo --- */
	body#amiibo-page	header#section-header h1 {
		max-width: 20%;
	}
	
	body#amiibo-page:lang(fr-CA) header#section-header h1 {
		max-width: 15%;
	}
	
	/* --- Logo --- */
	body#amiibo-page header#section-header h1 {
		height: 70px;
		-webkit-transition: all 0.2s ease-in-out;
		   -moz-transition: all 0.2s ease-in-out;
		    -ms-transition: all 0.2s ease-in-out;
		     -o-transition: all 0.2s ease-in-out;
		        transition: all 0.2s ease-in-out;
		margin-top: -7px;
	}
	body#amiibo-page.pin-nav header#section-header h1 {
		height: 40px;
		margin-top: 0;
	}
	
	body#amiibo-page nav.secondary-nav ul li a {
			border-radius: 25px;
		}

	body#amiibo-page nav.secondary-nav ul li.active a,
		body#amiibo-page nav.secondary-nav ul li a:hover {
			font-family: 'latoBlack';
			font-size: 18px;
			padding: 5px 20px;
		}

/*	-----------------------------------
	Wii U Specific
	----------------------------------- */
	/* --- Logo --- */
	body#wiiu-page header#section-header h1 {
		height: 70px;
		-webkit-transition: all 0.2s ease-in-out;
		   -moz-transition: all 0.2s ease-in-out;
		    -ms-transition: all 0.2s ease-in-out;
		     -o-transition: all 0.2s ease-in-out;
		        transition: all 0.2s ease-in-out;
	}
	body#wiiu-page.pin-nav header#section-header h1 {
		height: 40px;
	}
	/* --- Secondary Nav --- */
	body#wiiu-page nav.secondary-nav ul {
		background: #0096c8;
	}

}

/*	-----------------------------------
	Game Shop Specific
	----------------------------------- */
	/* --- Logo --- */
	body#games-page header#section-header h1 {
		top: 10px;
		position: relative;
		-webkit-transition: top 0.2s ease-in-out;
		   -moz-transition: top 0.2s ease-in-out;
		    -ms-transition: top 0.2s ease-in-out;
		     -o-transition: top 0.2s ease-in-out;
		        transition: top 0.2s ease-in-out;
	}
	body#games-page.pin-nav header#section-header h1 {
		top: 6px;
	}

		/* --- Logo --- */
	body#buy-digital-page header#section-header h1 {
		top: 10px;
		position: relative;
		-webkit-transition: top 0.2s ease-in-out;
		   -moz-transition: top 0.2s ease-in-out;
		    -ms-transition: top 0.2s ease-in-out;
		     -o-transition: top 0.2s ease-in-out;
		        transition: top 0.2s ease-in-out;
	}
	body#buy-digital-page.pin-nav header#section-header h1 {
		top: 6px;
	}

}


/*	-----------------------------------
	Additional Breakpoints for Spacing
	----------------------------------- */
@media screen and (max-width: 980px) {
	nav.secondary-nav ul li a {
		padding: 0 15px;
	}
}
@media screen and (max-width: 890px) {
	nav.secondary-nav ul li a {
		padding: 0 12px;
	}
}
@media screen and (max-width: 840px) {
	nav.secondary-nav ul li a {
		padding: 0 8px;
	}
}


/* 	================================================

	TABLET & MOBILE VIEWS

	================================================ */
@media screen and (max-width: 768px) {

/*	-----------------------------------
	Section Header
	----------------------------------- */
	header#section-header {
		height: 80px;
	}
		header#section-header div.pin {
			top: 10px;
		}
			/* --- Secondary Nav --- */
			nav.secondary-nav {
				font-size: 16px;
				position: absolute;
				top: 0;
				width: 100%;
			}
						
				nav.secondary-nav ul {
					background: #ce181e;
					border-radius: 2px;
					box-shadow: 0 3px 5px rgba(0,0,0,0.1);
					overflow: auto;
					padding: 0;
					position: absolute;
					top: 41px;
					width: 100%;
					z-index: 1;
				}

				body#games-page nav.secondary-nav ul,
				body#buy-digital-page nav.secondary-nav ul {
					background: #FF7D00;
				}
					nav.secondary-nav ul li {
						display: none;
						height: 40px;
						line-height: 40px;
						text-align: center;
						width: 100%;
					}
					nav.secondary-nav.open ul li {
						display: block;
					}
						nav.secondary-nav ul li a {
							display: block;
							height: 100%;
							padding: 0 10px;
						}
						nav.secondary-nav ul li:first-child a {
							border-top-left-radius: 2px;
							border-top-right-radius: 2px;
						}
						nav.secondary-nav ul li:last-child a {
							border: none;
							border-bottom-left-radius: 2px;
							border-bottom-right-radius: 2px;
						}

						/* Active Item */
						nav.secondary-nav a.nav-toggle {
							background: #ce181e;
							border-radius: 2px;
							color: #fff;
							display: block;
							height: 40px;
							line-height: 40px;
							padding: 0 6px;
							position: absolute;
							right: 0;
							text-align: left;
							top: 0;
							width: 65%;
							z-index: 1;
						}

						body#games-page nav.secondary-nav a.nav-toggle,
						body#buy-digital-page nav.secondary-nav a.nav-toggle {
							background: #FF7D00;
							overflow: hidden;
						}
						/* Toggle Arrow */
						nav.secondary-nav a.nav-toggle:after {
							border-radius: 2px;
							color: #fff;
							content: '\e608';
							display: block;
							font-family: 'icons';
							font-size: 20px;
							height: 40px;
							line-height: 40px;
							position: absolute;
							right: 0;
							text-align: center;
							top: 0;
							width: 32px;
							z-index: 1;
						}
						nav.secondary-nav.open a.nav-toggle:after {
							content: '\e60b';
						}
				nav.secondary-nav div.overlay {
					display: none;
					height: 100%;
					left: 0;
					position: fixed;
					top: 0;
					width: 100%;
				}

/*	-----------------------------------
	3DS Specific
	----------------------------------- */
	/* --- Logo --- */
	body#threeDS-page header#section-header h1 {
		max-width: 33%;
	}
	/* --- Secondary Nav --- */
	body#threeDS-page nav.secondary-nav ul {
		background: #ce181e;
	}
		body#threeDS-page nav.secondary-nav ul li a {
			border-bottom: 1px solid #ff0008;
		}
		body#threeDS-page nav.secondary-nav ul li:last-child a {
			border: none;
		}
		/* Active Item */
		body#threeDS-page nav.secondary-nav a.nav-toggle {
			background: #ce181e;
		}
	
	body#threeDS-page:lang(fr-CA) nav.secondary-nav,
	body#threeDS-page:lang(es-LA) nav.secondary-nav {
	    font-size: 14px;
	}
		
/*	-----------------------------------
	eshop Specific
	----------------------------------- */
	/* --- Secondary Nav --- */
	body#eshop-page nav.secondary-nav ul {
		background: #f47b2b;
	}
		body#eshop-page nav.secondary-nav ul li a {
			border-bottom: none;
		}
		body#eshop-page nav.secondary-nav ul li:last-child a {
			border: none;
		}
		/* Active Item */
		body#eshop-page nav.secondary-nav a.nav-toggle {
			background: #f47b2b;
		}
		
/*	-----------------------------------
	amiibo Specific
	----------------------------------- */
	/* --- Secondary Nav --- */
	body#amiibo-page nav.secondary-nav ul {
		background: rgba(0,0,0,0.5);
	}
		body#amiibo-page nav.secondary-nav ul li a {
			border-bottom: none;
		}
		body#amiibo-page nav.secondary-nav ul li:last-child a {
			border: none;
		}
		/* Active Item */
		body#amiibo-page nav.secondary-nav a.nav-toggle {
			background: rgba(0,0,0,0.9);
		}
	.nav-spacer {
		display: none!important;
		cursor: default;
	}


/*	-----------------------------------
	Wii U Specific
	----------------------------------- */
	/* --- Secondary Nav --- */
	body#wiiu-page nav.secondary-nav ul {
		background: #0096c8;
	}
		body#wiiu-page nav.secondary-nav ul li a {
			border-bottom: 1px solid #00beff;
		}
		body#wiiu-page nav.secondary-nav ul li:last-child a {
			border: none;
		}
		/* Active Item */
		body#wiiu-page nav.secondary-nav a.nav-toggle {
			background: #0096c8;
		}
}


/* 	================================================

	TABLET VIEW

	================================================ */
@media screen and (min-width: 571px) and (max-width: 768px) {

/*	-----------------------------------
	Wii U Specific
	----------------------------------- */
	/* --- Logo --- */
	body#wiiu-page header#section-header h1 {
		height: 40px;
		width: 127px;
	}
	
	body#eshop-page header#section-header h1 {
		max-width: 33%;
	}
	
	body#eshop-page header#section-header h1 img {
		padding-top: 5px;
	}
}


/* 	================================================

	MOBILE VIEW

	================================================ */
@media screen and (max-width: 570px) {

/*	-----------------------------------
	Wii U Specific
	----------------------------------- */
	/* --- Logo --- */
	body#wiiu-page header#section-header h1 {
		height: 40px;
		width: 90px;
	}
	
	body#eshop-page header#section-header h1,
	body#amiibo-page header#section-header h1 {
		max-width: 33%;
	}
	
	body#eshop-page header#section-header h1 img,
	body#amiibo-page header#section-header h1 img {
		padding-top: 5px;
	}
}

@media screen and (max-width: 480px) {
	body#games-page nav.secondary-nav,
	body#buy-digital-page nav.secondary-nav {
		top: 2px;
		right: 0;
		width: 80%;
	}
}

@media screen and (max-width: 378px) {
	body#games-page nav.secondary-nav a.nav-toggle {
		width: 160px;
	}
}

@media screen and (max-width: 350px) {
	body#games-page header#section-header h1 a,
	body#buy-digital-page header#section-header h1 a {
		width: 80%;
	}

	body#games-page nav.secondary-nav,
	body#buy-digital-page nav.secondary-nav {
		top: 0px;
	}
}

/* 	================================================

	3DS Browser Specific Styles

	================================================ */

body.nin3DS nav.secondary-nav a.nav-toggle:after {
	background: url('../../images/global/no-icon-font-arrows.png') -25px 0 no-repeat;
	content: '';
	height: 20px;
	line-height: 20px;
	overflow: hidden;
	right: 5px;
	top: 11px;
	width: 25px;
}
body.nin3DS nav.secondary-nav.open a.nav-toggle:after {
	background-position: -25px -20px;
}



/*	-----------------------------------
	Color Resets
	----------------------------------- */
a,
a.h1, a.h2, a.h3, a.h4, a.h5,
a.b1, a.b2, a.b3, a.b4, a.b5, a.b6, a.b7, a.b8 {
	color: #ce181e;
}
a:hover,
a.h1:hover, a.h2:hover, a.h3:hover, a.h4:hover, a.h5:hover,
a.b1:hover, a.b2:hover, a.b3:hover, a.b4:hover, a.b5:hover, a.b6:hover, a.b7:hover, a.b8:hover {
	color: #ff0008;
}

h1 a:hover, a.h1:hover,
h2 a:hover, a.h2:hover,
h3 a:hover, a.h3:hover {
	border-color: #ff0008;
}

/* remove 3ds branding from promos */
div.carousel ul.panels li.threeDS:after {
	content: "";
	background: none;
}

/* --- Default button --- */
.btn {
	background: #ce181e;
	border: 1px solid #ce181e;
	color: #fff;
}
	.btn:hover {
		background: #ff0008;
		border-color: #ff0008;
		color: #fff;
	}

	/* --- White button --- */
	/* --- Preview button --- */
	.btn-white,
	.btn-preview {
		background: #fff;
		border-color: #dadada;
		color: #ce181e;
	}
		.btn-white:hover,
		.btn-preview:hover {
			background: #fff;
			border-color: #ff0008;
			color: #ff0008;
		}

	/* --- Transparent button --- */
	.btn-transparent {
		background: none;
		border-color: #ce181e;
		color: #ce181e;
	}
		.btn-transparent:hover {
			background: none;
			border-color: #ff0008;
			color: #ff0008;
		}

	/* --- White Transparent button --- */
	.btn-white-transparent {
		background: none;
		border-color: #fff;
		color: #fff;
	}
		.btn-white-transparent:hover {
			background: #fff;
			border-color: #fff;
			color: #ff0008;
		}

	/* --- Grey button --- */
	.btn-grey {
		background: #888;
		border-color: #888;
		color: #fff;
	}
		.btn-grey:hover {
			background: #b1b1b1;
			border-color: #b1b1b1;
			color: #fff;
		}

	/* --- Video modal close button --- */

	#btn-modal-close {
		background: #ce181e!important;
	}
		#btn-modal-close:hover {
			background: #ff0008!important;
		}


	/* --- eShop button --- */
	.btn-eshop {
		background: #fff;
		border-color: #dadada;
		color: #484848;
	}
			.btn-eshop span.icon-eshop:before {
				color: #ff7d00;
			}
			.btn-eshop span.icon-eshop-nin:before {
				color: #8c8c8c;
			}
		/* hover state */
		.btn-eshop:hover {
			background: #fff;
			border-color: #ff7d00;
			color: #ff7d00;
		}
	/* --- eShop button with smaller orange text --- */
	.btn-eshop.orange {
		color: #ff7d00;
	}

/* --- Text button with circle plus --- */
.text-btn-plus {}
	.text-btn-plus:after {
		border: 2px solid #ce181e;
	}
	.text-btn-plus:hover:after {
		border-color: #ff0008;
	}

/* --- Block button --- */

a.btn-block {
	background: #ce181e;
}
	a.btn-block:hover {
		background: #ff0008;
	}

/* --- Custom Checkboxes --- */
/* Focus state */
input[type="checkbox"]:focus + label:before {
	outline: 1px dotted #ff0008;
}
/* Active state */
input[type="checkbox"]:checked + label {
	color: #ce181e;
}
input[type="checkbox"]:checked + label:before {
	background: #ce181e;
}

/* --- Carousel Pagination --- */
div.carousel ul.carousel-pagination li.is-active span {
	background: #ce181e;
	border-color: #ce181e;
}
div.carousel ul.carousel-pagination li a:hover span {
	background: #ff0008;
	border-color: #ff0008;
}
/*	--- Next/Prev Navigation --- */
div.carousel div.nav div.arrow a {
	background-image: url('/images/page/3ds/common/sprite-carousel-arrows.png');
}

/* --- Preview Window --- */
/* Close Button */
div.preview-container a.preview-close:before {
	color: #ce181e;
}
div.preview-container a.preview-close:hover:before {
	color: #ff0008;
}

/*	-----------------------------------
	Tech Specs & Browser Specs Pages
	----------------------------------- */
.no-margin-bottom {
	margin-bottom: 0;
}

ul.specs {
	border-bottom: 1px solid #dadada;
	padding: 30px 0;
}
	ul.specs h2 {
		margin-bottom: 10px;
	}
	ul.specs p span {
		font-family: 'LatoBold';
		font-size: 16px;
		margin-top: 10px;
		text-align: center;
	}
	ul.specs img {
		display: block;
	}
	/* Tech Specs */
	ul.specs ul li {
		border-bottom: 1px solid #dadada;
		padding-top: 50px;
	}
	ul.specs ul li:first-child {
		padding-top: 0;
	}
	ul.specs ul li:last-child {
		border: none;
	}
	/* Browser Specs */
	body.browser-specs ul.specs:last-child {
		border: none;
	}
	ul.specs > li.row {
		padding-bottom: 30px;
		word-wrap: break-word;
	}
	ul.specs > li.row:last-child {
		padding-bottom: 0;
	}
		ul.specs > li.row p {
			margin-top: 10px;
		}

body.tech-specs p.footnote {
	margin-top: 20px;
}




@media screen and (max-width: 570px) {

	/*	--- Next/Prev Navigation --- */
	/* add full background path for iOS 6 bug fix */
	div.carousel.drawer div.nav div.open a {
		background: url('/images/page/3ds/common/sprite-carousel-arrows.png') 0 -240px no-repeat;
	}
	div.carousel.drawer div.nav div.closed a {
		background: url('/images/page/3ds/common/sprite-carousel-arrows.png') -60px -240px no-repeat;
	}
}

/*	--- Featured Games Tabswitcher --- */
section#featured-games ul.featured-titles:before,
section#featured-games ul.featured-titles:after {
	background: #ce181e;
}
ul.featured-titles {
	background: #ce181e;
}
ul.featured-titles a:hover {
	background: #ff0008;
}
ul.games a:hover h3.b3 {
	color: #ff0008;
}


/*	-----------------------------------
	Common Elements
	----------------------------------- */
div.content-wrapper {
	padding: 30px 0 60px;
}

/* Compare checkmarks */
.icon-check {
	color: #ce181e;
	display: block;
	font-size: 22px;
	margin: 0 auto;
	text-indent: -99999em;
	width: 25px;
}

/* Color dots */
.device-color {
	border: 1px solid transparent;
	border-radius: 50%;
	display: inline-block;
	height: 24px;
	line-height: 24px;
	overflow: hidden;
	padding: 4px;
	position: relative;
	text-decoration: none;
	text-indent: -99999em;
	width: 24px;
}
.device-color:before {
	border-radius: 50%;
	content: '';
	display: block;
	height: 100%;
	width: 100%;
}



.text-btn-box {
	font-family: 'LatoItalic';
	font-size: 24px;
	margin-left: 11%;
	padding-left: 30px;
	background-image: url('/images/page/3ds/buynow/box-icon.png');
	background-position: left center;
	background-repeat: no-repeat;
	position: relative;
	top: -1.5em;
}
	.hardware-right .text-btn-box {
		margin-left: 40%;
	}

	body:lang(fr-CA) .text-btn-box {
		font-size: 20px;
		background-size: 9%;
	}
	
	body:lang(fr-CA) .content-wrapper.twods-wrapper .text-btn-box {
		top: 0.25em;
	}

/*	-----------------------------------
	What's in the Box
	----------------------------------- */
	/* Close Button */
	div.whats-in-the-box a.btn-close {
		background: #ce181e;
	}
	div.whats-in-the-box a.btn-close:hover {
		background: #ff0008;
	}
	
	p.hardware_label {
		margin-bottom: 0;
	}
	
	p.hardware_label.b4 {
		margin-bottom: 1em;
	}
	
	

.device-color.newred			{ background: #cc1121; }
.device-color.newblack			{ background: #000000; }
.device-color.newgalaxy 		{ background: url('/images/page/3ds/common/3ds-new-galaxy-bg.jpg') center center no-repeat; }								
.device-color.black         	{ background: #000; }
.device-color.nes    			{ background: url('/images/page/3ds/common/icon-nes.png') center center no-repeat; }


section.box ul.tab-nav li a.device-color.red2 	{ 
	background: #ce171f; 
	border: 5px solid #000000;
	color: #ffffff;
}
section.box ul.tab-nav li a.device-color.blue2 	{ 
	background: #006ab6; 
	border: 5px solid #000000;
	color: #ffffff;
}

.device-color.bordered {
	overflow: visible;
}

.device-color.bordered span {
	margin-top: -5px;
	font-size: 0.65rem;
}

.divider-side {
		border-right: 1px solid #000000;
	}

.top-links {
	margin-bottom: 2rem;
}

	.top-links .column {
		text-align: center!important;
	}
		.top-links .column a {
			color: #000000!important;
		}
		
			.show-threeds .top-links .column.threeds-hardware a,
			.show-twods .top-links .column.twods-hardware a,
			.show-threeds-acc .top-links .column.threeds-acc a,
			.show-twods-acc .top-links .column.twods-acc a,
			.top-links .column a:hover {
				color: #000000;
				text-decoration: none;
			}
				.show-threeds .top-links .column.threeds-hardware a span.thick-line,
				.show-twods .top-links .column.twods-hardware a span.thick-line,
				.show-threeds-acc .top-links .column.threeds-accessories a span.thick-line,
				.show-twods-acc .top-links .column.twods-accessories a span.thick-line,
				.top-links .column a:hover span.thick-line {
					border-bottom: 2px solid #000000;
				}

			.top-links .column a img {;
				display: block;
				margin: 0 auto 4px;
			}
			
				.top-links .column a img.hover {
					display: none;
					margin-bottom: 0;
				}
				.show-threeds .top-links .column a img.threeds-outline,
				.show-twods .top-links .column a img.twods-outline,
				.show-threeds-acc .top-links .column a img.threeds-acc-outline,
				.show-twods-acc .top-links .column a img.twods-acc-outline,
				.top-links .column a:hover img {
					display: none;
					margin-bottom: 0;
				}

				.show-threeds .top-links .column a img.threeds-outline.hover,
				.show-twods .top-links .column a img.twods-outline.hover,
				.show-threeds-acc .top-links .column a img.threeds-acc-outline.hover,
				.show-twods-acc .top-links .column a img.twods-acc-outline.hover,
				.top-links .column a:hover img.hover {
					display: block;
					margin-bottom: 4px;
				}
	
			.top-links .column a span.thick-line {
				border-bottom: 2px solid #ffffff;
				padding-bottom: 4px;
				-webkit-transition: border 300ms ease;
				-moz-transition: border 300ms ease;
				-ms-transition: border 300ms ease;
				-o-transition: border 300ms ease;
				transition: border 300ms ease;
			}



@media screen and (min-width: 571px) and (max-width: 670px) {
	.top-links .column a {
			font-size: 10px;
		}
}
@media screen and (min-width: 671px) and (max-width: 770px) {
	.top-links .column a {
			font-size: 11px;
		}
}
@media screen and (min-width: 771px) and (max-width: 870px) {
	.top-links .column a {
			font-size: 12px;
		}
}


a.hero-btn {
	display: block;
	margin: 1rem auto;
	padding: 0.5rem 1rem;
	border: 1px solid #ffffff;
	border-radius: 10px;
	text-align: center;
	color: #ffffff;
	font-size: 18px;
	font-family: 'latoRegular';
	background-color: #000000;
	-webkit-transition: all 250ms ease-in-out;
	   -moz-transition: all 250ms ease-in-out;
		-ms-transition: all 250ms ease-in-out;
		 -o-transition: all 250ms ease-in-out;
		    transition: all 250ms ease-in-out;
}
	
	a.hero-btn:hover {
		background-color: #333333;
		text-decoration: none;
		color: #ffffff;
	}

/*	-----------------------------------
	Accessories Page
	----------------------------------- */
body.accessories div.content-wrapper {
	padding-top: 0;
}
	ul.accessories {
		position: relative;
	}
	ul.accessories:before {
		border-left: 1px solid #dadada;
		content: '';
		display: block;
		height: 100%;
		left: 50%;
		position: absolute;
		top: 0;
		width: 1px;
		z-index: 0;
	}
		ul.accessories li {
			padding-bottom: 30px;
			padding-top: 30px;
		}
		ul.accessories li:nth-child(odd):before {
			border-top: 1px solid #dadada;
			top: 0;
			content: '';
			display: block;
			position: absolute;
			width: 200%;
		}
			ul.accessories p {
				line-height: 1.2;
			}
			ul.accessories p:last-child {
				margin-bottom: 0;
			}
				ul.accessories p strong {
					color: #484848;
				}


/* 	================================================

	DESKTOP VIEW

	================================================ */
@media screen and (min-width: 769px) {

/*	-----------------------------------
	Hero
	----------------------------------- */
	section.hero div.wrapper {
		height: 488px;
	}

	nav.secondary-nav ul li {
		margin: 0 -3px 0 -3px;
	}
}


/* 	================================================

	DESKTOP & TABLET VIEWS

	================================================ */
@media screen and (min-width: 571px) {
/*	-----------------------------------
	Global Footer
	----------------------------------- */
	nav.global-footer-top div.wrapper > ul > li:nth-of-type(3) {
		min-height: 150px;
	}
	nav.global-footer-top ul > li.footer-icon-country {
		margin-left: 1.42857143% ! important;
		clear: none ! important;
	}
	body:lang(fr-CA) .threeds-hardware,
	body:lang(fr-CA) .twods-hardware,
	body:lang(en-CA) .threeds-hardware,
	body:lang(en-CA) .twods-hardware {
		width: 82.85714286%;
	}
	body:lang(fr-CA) .threeds-hardware img,
	body:lang(fr-CA) .twods-hardware img,
	body:lang(en-CA) .threeds-hardware img,
	body:lang(en-CA) .twods-hardware img {
		display: block;
		margin:0 auto 5px;	
	}
}



/* 	================================================

	MOBILE VIEW

	================================================ */
@media screen and (max-width: 570px) {

/*	-----------------------------------
	Accessories Page
	----------------------------------- */
		ul.accessories:before {
			display: none;
		}
			ul.accessories li {
				border-bottom: 1px solid #dadada;
				padding-bottom: 20px;
				padding-top: 20px;
			}
			ul.accessories li:last-child {
				border-bottom: none;
			}
			ul.accessories li:nth-child(odd):before {
				display: none;
			}
			ul.accessories li:after {
				content: '';
				display: block;
				clear: both;
			}
	
	.show-threeds .top-links .column.threeds-hardware a span.thick-line,
	.show-twods .top-links .column.twods-hardware a span.thick-line,
	.show-threeds-acc .top-links .column.threeds-acc a span.thick-line,
	.show-twods-acc .top-links .column.twods-acc a span.thick-line,
	.top-links .column a:hover span.thick-line {
		border: 0;
	}
	
	.top-links span {
		display: none;
	}
	.top-links span.thick-line {
		display: inline;
	}
	
	body:lang(fr-CA) .threeds-hardware,
	body:lang(fr-CA) .twods-hardware,
	body:lang(en-CA) .threeds-hardware,
	body:lang(en-CA) .twods-hardware {
		width: 60%;
		margin: 5px auto;
		display: block;
	}
	
	body:lang(fr-CA) .threeds-accessories,
	body:lang(fr-CA) .twods-accessories,
	body:lang(en-CA) .threeds-accessories,
	body:lang(en-CA) .twods-accessories {
		display: none;
	}
	
	
	
	.top-links .column a img{
				opacity: 0.6;
				}
	
	.top-links .col6-mob {
		width: 50%;
		margin-left: 0;
		margin-right: 0;
	}
	
	.top-links img {
		width: 19%;
		display: inline;
		vertical-align: middle;
	}
	
	.top-links .single-cell {
		height: 60px;
		padding: 10px 0;
		box-sizing: border-box;
		font-size: 14px;
	}
	
	.top-links .column a span.top-span {
		position: relative;
	}


	/*	-----------------------------------
	What's in the Box
	----------------------------------- */
	
	p.hardware_label.b4 {
		margin-bottom: 0.5em;
	}
			
}

.icon-inline {
	font-family: 'icons';
	font-size: 0.8em;
}

.no-break {
	white-space: nowrap;
}

a:hover .no-break {
	text-decoration: underline;
}

/*	-----------------------------------
	Global Overrides
	----------------------------------- */

header#section-header div.pin {
	z-index: 40;
}


/*	-----------------------------------
	Spotlight Carousel
	----------------------------------- */

div#spotlight ul.panels li {
	margin-top: 1px;
}


/* override style defaults */

div.carousel ul.carousel-pagination {
	margin-top: 0;
}

#featured-games-list ul.games li {
	padding-bottom: 10px;
	padding-top: 30px;
}

ul.games div.boxart {
	padding-bottom: 90%;
}


/* / override style defaults */


/* Hover outlines on Desktop only */

@media screen and (min-width: 769px) {
	div#spotlight ul.panels li:hover {
		box-shadow: 0 0 0 1px #ce181e;
	}
	div#spotlight ul.panels li.no-system:hover {
		box-shadow: 0 0 0 1px #999;
	}
}

#featured-games-list .b3 {
	margin: 0 auto 10px;
	text-align: left;
	font-size: 16px;
	max-width: 157px;
}

#featured-games-list .btn-preview {
	margin-bottom: 8px!important;
	display: inline-block;
	font-size: 14px;
}


/*	-----------------------------------
	Footer Link
	----------------------------------- */

p.btn-borders a {
	display: inline-block;
	padding: 0 5%;
}

.logo_link {
	cursor: default;
}


/*	-----------------------------------
	Hero
	----------------------------------- */


/*
			To find an element's relative size (or other values):

				( targetSize / contextSize ) * 100

				targetSize  = the size of the element
				contextSize = the size of the elements parent

			Example using the logo:

				( 325 / 1024 ) = 0.3173828125
				0.3173828125 * 100 = 31.73828125
		*/

.hero-container {
	/* Changed to 000000 from 313131 because all 4 slides use 000000 */
	background: #000000;
}

.wide-wrapper {
	margin-left: auto;
	margin-right: auto;
	max-width: 1024px;
	min-width: 1004px;
	width: 1024px;
	position: relative;
}

#hero-nav {
	clear: both;
	padding-top: 10px;
	display: none;
	text-align: center;
}

#hero-nav a {
	padding-right: 10px;
}

#pagination {
	display: none;
	margin-top: 10px;
	text-align: center;
}

#pagination a {
	border: 1px solid #000;
	display: inline-block;
	padding: 10px;
	margin-left: 5px;
}

#pagination .is-active {
	background: #ccc;
}

.slide-link {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 5;
}


/*	-----------------------------------
			Tabs
			----------------------------------- */

#tabs {
	text-align: center;
	height: 96px;
	position: relative;
	margin-top: -36px;
	z-index: 12;
}

.tab {
	display: inline-block;
	width: 19%;
	margin: 18px 0 0 0;
	background-color: transparent;
	padding: 19px 0 0 0;
	color: #ffffff;
	height: 60px;
	text-align: center;
	white-space: nowrap;
	position: relative;
	top: 12px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.tab.twods {
	width: 33%;
}

.tab.is-active {
	background-color: #d01a19;
	color: #fff;
	font-family: 'latoBold';
	height: 78px;
	top: 0;
}

a.tab:hover {
	text-decoration: none;
}

@media screen and (min-width: 651px) and ( max-width: 768px) {
	#tabs {
		height: 78px;
	}
	.tab {
		display: none;
		vertical-align: top;
	}
	.tab.is-active {
		display: block;
		width: 100%;
		background-color: #d01a19;
		color: #fff;
		font-family: 'latoBold';
		height: 60px;
		top: 18px;
	}
	#pagination {
		display: block;
		background-color: #ffffff;
		padding-top: 5px;
		margin-top: 0;
	}
}

@media screen and ( max-width: 650px) {
	/* only show active tab for mobile */
	#tabs {
		height: 78px;
	}
	.tab {
		display: none;
		vertical-align: top;
	}
	.tab.is-active {
		display: block;
		width: 100%;
		background-color: #d01a19;
		color: #fff;
		font-family: 'latoBold';
		height: 60px;
		top: 18px;
	}
	#pagination {
		display: block;
		background-color: #ffffff;
		padding-top: 5px;
		margin-top: 0;
	}
}


/*	-----------------------------------
			Slides
			----------------------------------- */


/* hide slides on load */

.slide {
	display: none;
	text-align: center;
	opacity: 0;
	position: relative;
	cursor: pointer;
	background-repeat: no-repeat;
	-webkit-transition: opacity 300ms ease-in-out;
	-moz-transition: opacity 300ms ease-in-out;
	-ms-transition: opacity 300ms ease-in-out;
	-o-transition: opacity 300ms ease-in-out;
	transition: opacity 300ms ease-in-out;
}


/* animation */

.slide.transition-out {
	opacity: .2;
}

.slide.transition-in {
	opacity: .5;
}

.slide img {
	display: block;
}

.slide a.hero-btn {
	background-color: rgba(0, 0, 0, .5);
}

.slide a.hero-btn:hover {
	background-color: rgba(51, 51, 51, .75);
}


/*	-----------------------------------
				Slide 1 - New Nintendo 3DS XL
				----------------------------------- */

.slide1 .logo {
	position: absolute;
	z-index: 5;
	width: 31.73828125%;
	/* 325px */
	left: 1.3671875%;
	/* 15px */
	top: 13.605442176871%;
	/* 60px */
}

.slide1 .copy {
	position: absolute;
	z-index: 5;
	width: 38.73828125%;
	/* 325px */
	left: 1.3671875%;
	/* 15px */
	top: 34%;
}

.slide1 .copy p.b6 {
	color: #ffffff;
	margin-top: 0;
}

.slide1 h2, .slide1 .h2 {
	color: #ffffff;
	text-align: left;
	text-indent: 5%;
	margin-bottom: 0
}

.slide1 .threeds-top {
	position: absolute;
	z-index: 4;
	width: 43.06640625%;
	/* 441 */
	top: 4.988662131519%;
	/* 22 */
	left: 28.90625%;
	/* 296 */
	animation: animationFrames ease-in-out 4s;
	animation-iteration-count: infinite;
	transform-origin: 50% 50%;
	-webkit-animation: animationFrames ease-in-out 4s;
	-webkit-animation-iteration-count: infinite;
	-webkit-transform-origin: 50% 50%;
	-moz-animation: animationFrames ease-in-out 4s;
	-moz-animation-iteration-count: infinite;
	-moz-transform-origin: 50% 50%;
	-o-animation: animationFrames ease-in-out 4s;
	-o-animation-iteration-count: infinite;
	-o-transform-origin: 50% 50%;
	-ms-animation: animationFrames ease-in-out 4s;
	-ms-animation-iteration-count: infinite;
	-ms-transform-origin: 50% 50%;
}

@media screen and (min-width: 770px) and (max-width: 910px) {
	.slide1 h2, .slide1 .h2 {
		font-size: 38px;
		text-indent: 0;
	}
	.slide1 a.hero-btn {
		margin-top: 0;
		margin-bottom: 0;
		font-size: 16px;
	}
}

@media screen and (min-width: 651px) and (max-width: 769px) {
	.slide1 h2, .slide1 .h2 {
		font-size: 28px;
		text-indent: 0;
	}
	.slide1 .point {
		display: none;
	}
	.slide1 .copy p.b6 {
		font-size: 16px;
	}
	.slide1 a.hero-btn {
		margin-top: 0;
		margin-bottom: 0;
		font-size: 14px;
		padding: 0.5em 1em;
		border-radius: 5px;
	}
}

@media screen and (max-width: 650px) {
	.slide1 h2, .slide1 .h2 {
		font-size: 24px;
		text-indent: 0;
	}
}


/*	-----------------------------------
				Slide 1 Points
				----------------------------------- */

.point {
	display: table;
	position: absolute;
	opacity: 0;
	-webkit-transition: top 300ms ease-in-out, opacity 100ms ease-in-out 500ms;
	-moz-transition: top 300ms ease-in-out, opacity 100ms ease-in-out 500ms;
	-ms-transition: top 300ms ease-in-out, opacity 100ms ease-in-out 500ms;
	-o-transition: top 300ms ease-in-out, opacity 100ms ease-in-out 500ms;
	transition: top 300ms ease-in-out, opacity 100ms ease-in-out 500ms;
}

.point.active {
	-webkit-transition: top 300ms ease-in-out 300ms, opacity 100ms ease-in-out;
	-moz-transition: top 300ms ease-in-out 300ms, opacity 100ms ease-in-out;
	-ms-transition: top 300ms ease-in-out 300ms, opacity 100ms ease-in-out;
	-o-transition: top 300ms ease-in-out 300ms, opacity 100ms ease-in-out;
	transition: top 300ms ease-in-out 300ms, opacity 100ms ease-in-out;
}

.point.active {
	opacity: 1;
}

.point .point-bar {
	width: 0%;
	-webkit-transition: width 300ms ease-in-out 300ms;
	-moz-transition: width 300ms ease-in-out 300ms;
	-ms-transition: width 300ms ease-in-out 300ms;
	-o-transition: width 300ms ease-in-out 300ms;
	transition: width 300ms ease-in-out 300ms;
}

.point.active .point-bar {
	-webkit-transition: width 300ms ease-in-out;
	-moz-transition: width 300ms ease-in-out;
	-ms-transition: width 300ms ease-in-out;
	-o-transition: width 300ms ease-in-out;
	transition: width 300ms ease-in-out;
}

.point .point-img {
	width: 4%;
	-webkit-transition: width 300ms ease-in-out;
	-moz-transition: width 300ms ease-in-out;
	-ms-transition: width 300ms ease-in-out;
	-o-transition: width 300ms ease-in-out;
	transition: width 300ms ease-in-out;
}

.point.active .point-img {
	-webkit-transition: width 300ms ease-in-out 300ms;
	-moz-transition: width 300ms ease-in-out 300ms;
	-ms-transition: width 300ms ease-in-out 300ms;
	-o-transition: width 300ms ease-in-out 300ms;
	transition: width 300ms ease-in-out 300ms;
}

.point.active .point-img {
	width: 100%
}

.point.cstick {
	top: 44.3%;
	left: 79.5%;
}

.point.cstick.active {
	top: 29.3%;
}

.point.cstick.active .point-bar {
	width: 14%;
}

.point.cstick .point-seed span, .point.cstick .point-bar span {
	background-color: rgba(0, 168, 141, 0.7);
}

.point.threed {
	top: 26%;
	left: 66%;
}

.point.threed.active .point-bar {
	width: 52%;
}

.point.threed.active {
	top: 11%;
}

.point.threed .point-seed span, .point.threed .point-bar span {
	background-color: rgba(244, 93, 106, 0.7);
}

.point.faster {
	top: 75%;
	left: 77%;
}

.point.faster.active .point-bar {
	width: 32%;
}

.point.faster.active {
	top: 60%;
}

.point.faster .point-seed span, .point.faster .point-bar span {
	background-color: rgba(250, 165, 25, 0.7);
}

.point.amiibo {
	top: 63%;
	left: 50%;
}

.point.amiibo.active .point-bar {
	width: 54%;
}

.point.amiibo.active {
	top: 48%;
}

.point.amiibo .point-seed span, .point.amiibo .point-bar span {
	background-color: rgba(187, 220, 112, 0.7);
}

.point .point-seed span {
	width: 6px;
	height: 6px;
	border-radius: 3px;
}

.point .point-bar span {
	height: 2px;
	width: 100%;
}

.point .point-seed span, .point .point-bar span {
	display: block;
}

.point-seed, .point-bar {
	display: table-cell;
	vertical-align: middle;
}

.slide1 .threeds-btm {
	position: absolute;
	z-index: 3;
	width: 45.5078125%;
	/* 466 */
	top: 25%;
	/* 120 */
	left: 53.02734375%;
	/* 543 */
}

.slide1 .bg-circle {
	position: absolute;
	z-index: 2;
	width: 75.390625%;
	/* 772 */
	height: 112.107623318386;
	/* 500 */
	top: 0;
	left: 22%;
	/* eyeballed this one */
}

@media screen and (max-width: 769px) {
	.slide1 .point {
		display: none;
	}
}

@media screen and (max-width: 650px) {
	.slide1 a.hero-btn {
		margin: 5px auto;
		padding: .3rem .5rem;
	}
	.slide1 .copy .h1, .slide1 .copy .h2 {
		color: #ffffff;
		text-align: left;
	}
}


/*	-----------------------------------
	Slide 4 - 2DS
	----------------------------------- */

.slide4 {
	background-image: none;
}

.slide4-burst {
	position: absolute;
	bottom: 0;
	left: -25%;
	width: 150%;
	height: 170%;
	background-color: #be3127;
	background: -webkit-radial-gradient(at bottom, #fff, #be3127, #be3127);
	background: radial-gradient(at bottom, #fff, #be3127, #be3127);
}

.twods-blue, .twods-red {
	position: absolute;
	top: 33%;
	left: 35%;
	width: 34.5%;
	animation-fill-mode: forwards;
	animation-duration: .5s;
	animation-name: none;
	opacity: 0;
	will-change: transform, opacity;
	transform: translateX(-200%);
	transition: .4s all;
}

.twods-red {
	width: 39.6%;
	top: 25%;
	left: 23%;
}

.slide4.is-active .twods-red {
	animation-name: bounceInLeft;
	animation-delay: .9s;
	opacity: 1;
}

.slide4.is-active .twods-blue {
	animation-name: bounceInLeft;
	animation-delay: .7s;
	opacity: 1;
}

@keyframes bounceInLeft {
	from, 60%, 75%, 90%, to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translateX(-200%, 0, 0);
	}
	60% {
		opacity: 1;
		transform: translateX(25px, 0, 0);
	}
	75% {
		transform: translateX(-10px, 0, 0);
	}
	90% {
		transform: translateX(5px, 0, 0);
	}
	to {
		transform: none;
	}
}

.slide4 .mario-and-bowser {
	position: absolute;
	width: 43.8%;
	bottom: -9%;
	left: -7%;
	will-change: transform;
	transform: scale(0.1, 0.1);
	transform-origin: top center;
	transition: all 500ms cubic-bezier(.8, 0, .06, 1.42) 1.2s;
}

.slide4.is-active .mario-and-bowser {
	transform: scale(1, 1);
}

.includes-download {
	position: absolute;
	right: 90px;
	bottom: 5%;
}

.headline {
	position: absolute;
	top: 4%;
	left: 0;
	text-transform: uppercase;
	font-size: 40px;
	font-family: "LatoBlack";
	color: #fff;
	text-align: left;
}

.headline2 {
	font-family: "LatoLight";
}

.large-size-text {
	font-size: .5em;
	text-transform: uppercase;
}

.mid-size-text {
	text-transform: uppercase;
	font-size: .4em;
}

.mid-size-text.left-padded {
	padding-left: 25%;
}

span.strikethrough {
	position: relative;
}

span.strikethrough:after {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	right: 0;
	border-top: 5px solid #000;
	transform: rotate(-12deg);
	transform-origin: center center;
	width: 105%;
}

.each-msrp {
	font-size: .5em;
	display: inline-block;
	text-align: left;
}

.learn-more-btn {
	position: absolute;
	font-family: "LatoBlack";
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	padding: .5em 1em;
	border: solid 5px #fff;
	margin-top: .8em;
	transition: all .3s;
}

.slide4:hover .learn-more-btn {
	color: #fef43b;
	border-color: #fef43b;
}

.slide4 .price {
	position: absolute;
	font-size: 140px;
	text-align: right;
	font-family: "LatoBlack";
	text-shadow: -3px -3px 0 #a02621, 0 -3px 0 #a02621, 3px -3px 0 #a02621, 3px 0 0 #a02621, 3px 3px 0 #a02621, 0 3px 0 #a02621, -3px 3px 0 #a02621, -3px 0 0 #a02621;
	top: 0;
	right: 0;
	color: #fff;
	margin: 15px 0;
}

.slide4 .price .msrp {
	position: absolute;
	font-size: 24px;
	right: 5px;
	top: 100px;
}

.slide4 .price-container {
	position: absolute;
	top: 0;
	right: 5%;
}

.new-low-price {
	text-transform: uppercase;
	position: relative;
	text-align: right;
	font-family: "LatoBlack";
	text-shadow: -3px -3px 0 #a02621, 0 -3px 0 #a02621, 3px -3px 0 #a02621, 3px 0 0 #a02621, 3px 3px 0 #a02621, 0 3px 0 #a02621, -3px 3px 0 #a02621, -3px 0 0 #a02621;
	top: 0;
	color: #fff;
	font-size: 3vw;
	margin: .3em 0 -.2em;
}

.slide4 .price-us {
	position: relative;
	text-align: right;
	font-family: "LatoBlack";
	text-shadow: -3px -3px 0 #a02621, 0 -3px 0 #a02621, 3px -3px 0 #a02621, 3px 0 0 #a02621, 3px 3px 0 #a02621, 0 3px 0 #a02621, -3px 3px 0 #a02621, -3px 0 0 #a02621;
	top: 0;
	color: #fff;
	font-size: 9vw;
	margin: 0;
}

@media screen and (min-width: 1000px) {
	.slide4 .price-us {
		font-size: 120px;
	}
	.new-low-price {
		font-size: 30px;
		text-align: left;
	}
}

.slide4 .price-us .each {
	position: absolute;
	font-size: .2em;
	right: 0.5em;
	top: 3.6em;
}

.slide4 .price-us .msrp {
	position: absolute;
	font-size: .2em;
	right: 0;
	top: 4.7em;
}

.plays-all-games {
	font-size: 20px;
	text-transform: uppercase;
	margin-top: -.2em;
}

@media screen and (min-width: 769px) {
	.slide4 .centered-esrb {
		bottom: 3%;
		right: 0;
		position: absolute;
		color: #000;
		font-size: .7em;
		text-align: center;
		line-height: .7em;
	}
	.slide4 .centered-esrb img {
		margin: 0 auto;
	}
}

body:lang(en-CA) .slide4 .price {
	font-size: 10vw;
	text-align: left;
}

.now-price {
	position: relative;
}

.now-price * {
	vertical-align: top;
}

body:lang(en-CA) .slide4 .now-price .msrp {
	font-size: .17em;
	top: 7.5vw;
	right: 2vw;
	text-align: left;
}

@media screen and (max-width: 500px) {
	body:lang(en-CA) .slide4 .price {
		font-size: 16vw;
		width: 100%;
		right: 0;
	}
	body:lang(en-CA) .slide4 .now-price .msrp {
		top: 12vw;
		text-align: left;
	}
	.now-price {
		text-align: right;
	}
	.mid-size-text.left-padded {
		padding-left: 28%;
	}
}

@media screen and (min-width: 1000px) {
	body:lang(en-CA) .slide4 .price {
		font-size: 100px;
	}
	body:lang(en-CA) .slide4 .now-price .msrp {
		top: 75px;
		right: 19px;
	}
}

@media screen and (max-width: 768px) {
	.slide4 .price {
		font-size: 21vw;
		top: 0;
		right: 5%;
		margin: 0;
	}
	.slide4 .price-us {
		font-size: 15vw;
		display: inline-block;
	}
	.slide4 .price .msrp {
		position: absolute;
		font-size: .2em;
		right: 0;
		top: 16vw;
	}
	.slide4 .price-container {
		width: 90%;
		text-align: right;
	}
	.new-low-price {
		display: inline-block;
		margin-right: .5em;
		font-size: 6vw;
		vertical-align: top;
	}
	.new-low-price .new-low {
		font-size: .6em;
		display: block;
	}
	.includes-download {
		width: 38%;
		left: 3%;
		bottom: 3%;
	}
	.plays-all-games {
		font-size: .17em;
	}
	.slide4 .mario-and-bowser {
		width: 60%;
		left: 12%;
		bottom: -8%;
	}
	.twods-red {
		width: 52%;
		top: 38%;
		left: 40%;
	}
	.twods-blue {
		width: 45.3%;
		left: 55%;
		top: 45%;
	}
}

@media screen and (max-width: 500px) {
	.slide1 .wide-wrapper, .slide-lime .wide-wrapper, .slide4 .wide-wrapper, .slide-sm3dl .wide-wrapper, .slide-galaxy .wide-wrapper, .slide-solgaleo-lunala .wide-wrapper {
		padding-top: 20%;
	}
	.slide4 .price-us {
		font-size: 21vw;
	}
	.slide-link {
		margin-top: -20%;
	}
	.slide1 .threeds-top {
		top: 30%;
		left: 50%;
	}
	.slide1 .point {
		display: none;
	}
	.slide1 .threeds-btm {
		display: none;
	}
	.slide1 .logo {
		width: 60%;
		left: 15px;
		top: 15px;
	}
	.slide1 .copy {
		width: 55%;
		top: 32%;
	}
	.slide1 .copy .h1 {
		font-size: 30px;
	}
	.slide1 .copy .h2 {
		font-size: 20px;
		margin-bottom: 0;
	}
	.slide1 .bg-circle {
		left: 0;
		top: 0;
		width: 100%;
	}
}

.carousel-price {
	color: #FFF;
	font-size: 70px;
	position: relative;
	font-family: "LatoBlack";
}

.carousel-price .price-note {
	position: relative;
	left: -40px;
	bottom: 0px;
	line-height: 0.4em;
	font-family: "LatoBold";
	font-size: .25em;
}

.carousel-price sup {
	font-size: 0.6em;
	vertical-align: top;
	position: relative;
	top: 5px;
}

@media screen and (max-width: 768px) {
	.carousel-price {
		font-size: 40px;
	}
	.carousel-price sup {
		top: 0;
	}
	.carousel-price .price-note {
		left: -20px;
	}
}

.btn-slider-cta {
	border-radius: 2px;
	display: block;
	font-family: 'LatoBold';
	font-size: 20px;
	line-height: 28px;
	margin: 30px 0 0;
	padding: 10px 0;
	text-align: center;
	text-decoration: none;
	width: 200px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	border: 4px solid #000;
	color: #000;
}

.btn-slider-cta:hover {
	text-decoration: none;
	color: #000;
}

@media screen and (max-width: 570px) {
	.btn-slider-cta {
		padding: 5px;
		width: initial!important;
		display: inline-block;
	}
}


/*	-----------------------------------
	Solgaleo Lunala Black slide
	----------------------------------- */

.slide-solgaleo-lunala {
	background-image: url('/images/page/3ds/hero/solgaleo-lunala-bg.jpg');
	background-position: center top;
	text-align: left;
}

.slide-solgaleo-lunala .copy {
	position: absolute;
	width: 25%;
	top: 12%;
	left: 7%;
	text-align: center;
	color: #000;
}

.slide-solgaleo-lunala .hardware-title {
	font-family: 'Baumans', cursive;
	color: white;
	background-color: black;
	font-size: 1.75rem;
	border-radius: 0.5em;
	display: block;
	position: absolute;
	width: 53%;
	max-width: 544px;
	top: 7%;
	left: 36%;
	text-align: center;
	padding: 0.1em;
}

.slide-solgaleo-lunala .hardware-copy {
	font-style: italic;
	margin-top: 1em;
}

.slide-solgaleo-lunala .copy .carousel-price {
	color: #000;
}

.slide-solgaleo-lunala .copy .carousel-price .price-note {
	left: -42px;
}

@media screen and (max-width: 768px) {
	.slide-solgaleo-lunala .copy .carousel-price .price-note {
		left: -20px;
	}
}

.slide-solgaleo-lunala .btn-slider-cta {
	border-radius: 2px;
	display: inline-block;
	font-family: 'LatoBold';
	font-size: 30px;
	line-height: 28px;
	margin: 16px auto 0;
	padding: 9px;
	text-align: center;
	text-decoration: none;
	width: auto;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	border: 4px solid #000;
	color: #000;
	background-color: rgba( 255, 255, 255, 0.35);
}

.hardware-solgaleo-lunala-black {
	position: absolute;
	opacity: 0;
	width: 53%;
	max-width: 544px;
	top: 21%;
	left: 36%;
	will-change: transform, opacity;
	transition: opacity 500ms cubic-bezier(.87, -.41, .19, 1.44) 1s;
}

.is-active .hardware-solgaleo-lunala-black {
	transform: scale(1, 1);
	opacity: 1;
	animation: pokeball-shake 5s ease-in-out 1s;
	transform-origin: bottom center;
}

.slide-solgaleo-lunala .mobile-extra-copy {
	display: none;
}

@media screen and (min-width: 651px) and (max-width: 768px) {
	.slide-solgaleo-lunala .hardware-title {
		font-size: 1.6rem;
	}
	.slide-solgaleo-lunala .hardware-copy {
		font-size: 1rem;
		margin-top: 1em;
	}
	.slide-solgaleo-lunala .btn-slider-cta {
		font-size: 22px;
		line-height: 26px;
		margin: 8px auto 0;
		padding: 6px;
	}
}

@media screen and (min-width: 501px) and (max-width: 650px) {
	.slide-solgaleo-lunala .hardware-title {
		font-size: 1.2rem;
	}
	.slide-solgaleo-lunala .hardware-copy {
		font-size: 0.8rem;
		margin-top: 0.5em;
	}
	.slide-solgaleo-lunala .btn-slider-cta {
		font-size: 16px;
		line-height: 20px;
		margin: 5px auto 0;
		padding: 4px;
	}
}

@media screen and (max-width: 500px) {
	.slide-solgaleo-lunala .hardware-title, .slide-solgaleo-lunala .btn-slider-cta, .slide-solgaleo-lunala .hardware-copy {
		display: none;
	}
	.slide-solgaleo-lunala .carousel-price {
		font-size: 50px;
		width: 46%;
		display: inline-block;
		text-align: right;
	}
	.slide-solgaleo-lunala .copy {
		position: absolute;
		width: 96%;
		top: 5%;
		left: 2%;
		text-align: center;
	}
	.slide-solgaleo-lunala .copy img {
		width: 50%;
		display: inline-block;
	}
	.hardware-solgaleo-lunala-black {
		left: 0;
		right: 0;
		margin: auto;
		top: 27%;
		width: 50%;
	}
	.slide-solgaleo-lunala .mobile-extra-copy {
		color: white;
		background-color: black;
		font-size: 1rem;
		border-radius: 0.5em;
		display: block;
		position: absolute;
		width: 98%;
		max-width: 544px;
		bottom: 5%;
		left: 0;
		right: 0;
		margin: auto;
		text-align: center;
		padding: 0.2em;
	}
}

@keyframes pokeball-shake {
	15% {
		transform: translate(0, 0) rotate(0);
	}
	19% {
		transform: translate(-4px, 0) rotate(-4deg);
	}
	23% {
		transform: translate(3px, 0) rotate(3deg);
	}
	27% {
		transform: translate(0, 0) rotate(0);
	}
	45% {
		transform: translate(0, 0) rotate(0);
	}
	48% {
		transform: translate(-3px, 0) rotate(-3deg);
	}
	51% {
		transform: translate(2px, 0) rotate(2deg);
	}
	54% {
		transform: translate(0, 0) rotate(0);
	}
	70% {
		transform: translate(0, 0) rotate(0);
	}
	72% {
		transform: translate(-2px, 0) rotate(-2deg);
	}
	74% {
		transform: translate(1px, 0) rotate(1deg);
	}
	76% {
		transform: translate(0, 0) rotate(0);
	}
	92% {
		transform: scale(1, 1);
	}
	95% {
		transform: scale(1.02, 1.02);
	}
	98% {
		transform: scale(1, 1);
	}
}


/*	-----------------------------------
	Galaxy Style slide
	----------------------------------- */

.slide-galaxy {
	background-image: url('/images/page/3ds/hero/bg-galaxy.jpg');
	background-position: center top;
	text-align: left;
}

.placeholder-galaxy {
	visibility: hidden;
}

.slide-galaxy .copy {
	position: absolute;
	width: 25%;
	top: 10%;
	left: 0;
	text-align: center;
}

.slide-galaxy .name {
	font-size: 52px;
	font-family: 'LatoRegular';
	color: #fff38a;
	background: -webkit-linear-gradient(#ffffff, #fff38a);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-decoration: none;
	position: absolute;
	top: 69%;
	left: 38%;
}

.slide-galaxy .name .line {
	border-bottom: 1px solid #fff38a;
}

.slide-galaxy .name:before {
	content: "";
	display: block;
	position: absolute;
	background-image: url('/images/page/3ds/hero/galaxy-stars-left.png');
	bottom: -3px;
	width: 101px;
	height: 10px;
	left: -68px;
}

.slide-galaxy .name:after {
	content: "";
	display: block;
	position: absolute;
	background-image: url('/images/page/3ds/hero/galaxy-stars-right.png');
	bottom: -3px;
	width: 101px;
	height: 10px;
	right: -80px;
}

.slide-galaxy .stars {
	position: absolute;
	width: 43%;
	max-width: 425px;
	left: 36%;
	top: 10%;
}

.stars-left, .stars-right {
	perspective-origin: center center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.stars-left .galaxy-star, .stars-left .galaxy-circle {
	left: 50%;
}

.stars-right .galaxy-star, .stars-right .galaxy-circle {
	right: 50%;
}

.galaxy-circle, .galaxy-star {
	position: absolute;
	width: 1%;
	opacity: 0;
	top: 0;
	margin-top: 29%;
	will-change: opacity, transform;
	animation-iteration-count: infinite;
	transition: all 700ms cubic-bezier(.87, -.41, .19, 1.44) 0.5s;
}

.is-active .galaxy-circle, .is-active .galaxy-star {
	opacity: 1;
}

.is-active .galaxy-circle.c1 {
	width: 1%;
	left: -15%;
	margin-top: 4%;
	animation-name: twinkle;
	animation-duration: 21s;
	animation-delay: 2s;
}

.is-active .galaxy-circle.c2 {
	width: 1%;
	left: -8%;
	margin-top: 47%;
	animation-name: twinkle;
	animation-duration: 19.1s;
	animation-delay: 1s;
}

.is-active .galaxy-circle.c3 {
	width: 0.5%;
	margin-top: 64%;
	left: -14%;
	animation-name: twinkle;
	animation-duration: 20.7s;
	animation-delay: 3s;
}

.is-active .galaxy-circle.c4 {
	width: 1%;
	margin-top: 66%;
	left: -24%;
	animation-name: twinkle;
	animation-duration: 16.2s;
	animation-delay: 1s;
}

.is-active .galaxy-circle.c5 {
	width: 1.5%;
	right: -3%;
	margin-top: 5%;
	animation-name: twinkle;
	animation-duration: 18.1s;
	animation-delay: 2s;
}

.is-active .galaxy-circle.c6 {
	width: 1%;
	right: -11%;
	margin-top: 12%;
	animation-name: twinkle;
	animation-duration: 20.2s;
	animation-delay: 3s;
}

.is-active .galaxy-circle.c7 {
	width: 0.5%;
	right: -3%;
	margin-top: 33%;
	animation-name: twinkle;
	animation-duration: 22.1s;
	animation-delay: 1s;
}

.is-active .galaxy-circle.c8 {
	width: 1%;
	right: -18%;
	margin-top: 44%;
	animation-name: twinkle;
	animation-duration: 17.7s;
	animation-delay: 2s;
}

.is-active .galaxy-circle.c9 {
	width: 1.5%;
	right: -8%;
	margin-top: 51%;
	animation-name: twinkle;
	animation-duration: 19.4s;
	animation-delay: 3s;
}

.is-active .galaxy-circle.c10 {
	width: 1%;
	right: -15%;
	margin-top: 63%;
	animation-name: twinkle;
	animation-duration: 16.5s;
	animation-delay: 1s;
}

.is-active .galaxy-star.s1 {
	width: 2%;
	transform: rotate(45deg);
	margin-top: -7%;
	left: 40%;
	animation-name: twinkle;
	animation-duration: 21.3s;
	animation-delay: 2s;
}

.is-active .galaxy-star.s2 {
	width: 4%;
	transform: rotate(30deg);
	margin-top: -5%;
	left: 56%;
	animation-name: twinkle;
	animation-duration: 20.7s;
	animation-delay: 3s;
}

.is-active .galaxy-star.s3 {
	width: 3%;
	left: -21%;
	margin-top: -3%;
	transform: rotate(45deg);
	animation-name: twinkle;
	animation-duration: 18.5s;
	animation-delay: 1s;
}

.is-active .galaxy-star.s4 {
	width: 4%;
	left: -10%;
	margin-top: 20%;
	transform: rotate(31deg);
	animation-name: twinkle;
	animation-duration: 20s;
	animation-delay: 2s;
}

.is-active .galaxy-star.s5 {
	width: 3%;
	margin-top: 51%;
	left: -14%;
	transform: rotate(45deg);
	animation-name: twinkle;
	animation-duration: 19s;
	animation-delay: 3s;
}

.is-active .galaxy-star.s6 {
	width: 4%;
	margin-top: 59%;
	transform: rotate(30deg);
	left: -39%;
	animation-name: twinkle;
	animation-duration: 24s;
	animation-delay: 1s;
}

.is-active .galaxy-star.s7 {
	width: 3%;
	right: 1%;
	transform: rotate(45deg);
	margin-top: -4%;
	animation-name: twinkle;
	animation-duration: 21s;
	animation-delay: 2s;
}

.is-active .galaxy-star.s8 {
	width: 4%;
	right: -28%;
	transform: rotate(30deg);
	margin-top: 7%;
	animation-name: twinkle;
	animation-duration: 15s;
	animation-delay: 3s;
}

.is-active .galaxy-star.s9 {
	width: 3%;
	right: -13%;
	transform: rotate(45deg);
	top: 0;
	margin-top: 31%;
	animation-name: twinkle;
	animation-duration: 14s;
	animation-delay: 1s;
}

.is-active .galaxy-star.s10 {
	width: 3%;
	right: -40%;
	transform: rotate(45deg);
	margin-top: 39%;
	animation-name: twinkle;
	animation-duration: 16s;
	animation-delay: 2s;
}

.is-active .galaxy-star.s11 {
	width: 2.5%;
	right: -6%;
	transform: rotate(38deg);
	margin-top: 45%;
	animation-name: twinkle;
	animation-duration: 14s;
	animation-delay: 3s;
}

.is-active .galaxy-star.s12 {
	width: 4.5%;
	right: -22%;
	transform: rotate(27deg);
	margin-top: 55%;
	animation-name: twinkle;
	animation-duration: 21s;
	animation-delay: 1s;
}

@keyframes twinkle {
	0% {
		opacity: 1;
		transform: scale(1, 1);
	}
	45% {
		opacity: 1;
		transform: scale(1, 1);
	}
	50% {
		opacity: 0;
		transform: scale(0.5, 0.5) rotate(45deg);
	}
	55% {
		opacity: 1;
		transform: scale(1, 1);
	}
	100% {
		opacity: 1;
		transform: scale(1, 1);
	}
}

.hardware-galaxy {
	position: absolute;
	opacity: 0;
	transform: scale(0.2, 0.2);
	width: 43%;
	max-width: 425px;
	top: 10%;
	left: 36%;
	transition: all 500ms cubic-bezier(.87, -.41, .19, 1.44) 1s;
}

.is-active .hardware-galaxy {
	transform: scale(1, 1);
	opacity: 1;
}

.slide-galaxy .carousel-price {
	color: #FFF;
	font-size: 85px;
}

.slide-galaxy .carousel-price .price-note {
	left: -2.15em;
}

.slide-galaxy .btn-slider-cta {
	border-radius: 2px;
	display: inline-block;
	font-family: 'LatoBold';
	font-size: 30px;
	line-height: 28px;
	margin: 16px auto 0;
	padding: 9px;
	text-align: center;
	text-decoration: none;
	width: auto;
	transition: all 200ms ease;
	border: 4px solid #fff;
	color: #fff;
	background-color: rgba( 255, 255, 255, 0.35);
}

.slide-galaxy .mobile-cta {
	display: none;
}

@media screen and (min-width: 769px) and (max-width: 980px) {
	.slide-galaxy {
		background-position: 37% 11%;
	}
	.slide-galaxy .name {
		font-size: 41px;
		top: 81%;
		width: 53%;
		text-align: center;
		max-width: 425px;
	}
	.hardware-galaxy, .slide-galaxy .stars {
		width: 53%;
		top: 9%;
		left: 39%;
	}
	.slide-galaxy .copy {
		position: absolute;
		width: 30%;
		top: 8%;
		left: 2%;
		text-align: center;
	}
	.slide-galaxy .carousel-price {
		font-size: 75px;
	}
}

@media screen and (min-width: 651px) and (max-width: 768px) {
	.slide-galaxy {
		background-position: center 29%;
	}
	.slide-galaxy .carousel-price {
		font-size: 65px;
	}
	.slide-galaxy .copy {
		width: 30%;
		top: 6%;
		left: 2%;
	}
	.slide-galaxy .name {
		font-size: 36px;
		top: 82%;
		width: 53%;
		text-align: center;
		max-width: 425px;
	}
	.slide-galaxy .name:before {
		left: -1em;
	}
	.slide-galaxy .name:before {
		right: -1.5em;
	}
	.hardware-galaxy, .slide-galaxy .stars {
		width: 53%;
		top: 11%;
		left: 39%;
	}
	.slide-galaxy .btn-slider-cta {
		font-size: 23px;
		padding: 8px;
	}
}

@media screen and (min-width: 501px) and (max-width: 650px) {
	.slide-galaxy {
		background-position: center 29%;
	}
	.hardware-galaxy, .slide-galaxy .stars {
		width: 53%;
		top: 11%;
		left: 39%;
	}
	.slide-galaxy .copy {
		width: 35%;
		top: 6%;
		left: 2%;
	}
	.slide-galaxy .carousel-price {
		font-size: 50px;
	}
	.slide-galaxy .btn-slider-cta {
		font-size: 20px;
		margin: 16px auto 0;
		padding: 8px;
	}
	.slide-galaxy .name {
		font-size: 30px;
		top: 80%;
		left: 39%;
		width: 53%;
		text-align: center;
		max-width: 425px;
	}
}

@media screen and (max-width: 500px) {
	.slide-galaxy {
		background-image: url('/images/page/3ds/hero/bg-galaxy-mob.jpg');
		background-position: center center;
	}
	.slide-galaxy .carousel-price {
		font-size: 50px;
		width: 46%;
		display: inline-block;
		text-align: right;
	}
	.slide-galaxy .copy {
		position: absolute;
		width: 96%;
		top: 5%;
		left: 2%;
		text-align: center;
	}
	.slide-galaxy .copy img {
		width: 50%;
		display: inline-block;
	}
	.hardware-galaxy, .slide-galaxy .stars {
		left: 0;
		right: 0;
		margin: auto;
		top: 24%;
		width: 50%;
	}
	.slide-galaxy .btn-slider-cta {
		display: none;
	}
	.slide-galaxy .mobile-cta {
		width: 100%;
		position: absolute;
		bottom: 3%;
		left: 0;
		right: 0;
		margin: auto;
		display: inline-block;
		text-align: center;
		color: #ffffff;
		font-size: 22px;
	}
	.slide-galaxy .name {
		font-size: 34px;
		top: 72%;
		left: 0;
		right: 0;
		margin: auto;
		text-align: center;
	}
	.slide-galaxy .name:before {
		background-size: contain;
		background-repeat: no-repeat;
		width: 70px;
		height: 7px;
		left: 2em;
	}
	.slide-galaxy .name:after {
		background-size: contain;
		background-repeat: no-repeat;
		width: 70px;
		height: 7px;
		right: 1.6em;
	}
}


/*	-----------------------------------
	Slide Super Mario 3D Land
	----------------------------------- */

.slide-sm3dl {
	background-image: url('/images/page/3ds/hero/bg-sm3dl.jpg');
	background-position: center top;
	text-align: left;
}

.slide-sm3dl .copy {
	position: absolute;
	width: 25%;
	top: 0%;
	right: 0;
}

.slide-sm3dl .title {
	position: absolute;
	text-align: center;
	width: 100%;
	top: 2%;
	font-size: 20px;
}

.slide-sm3dl p {
	color: #000;
}

.slide-sm3dl .btn-slider-cta {
	margin-top: 18px;
	font-size: 20px;
	line-height: 20px;
	padding: 8px 0;
	max-width: 200px;
	width: auto;
}

.slide-sm3dl .btn-slider-cta:hover {
	background: #fff;
}

.slide-sm3dl .carousel-price {
	color: #000;
	float: left;
	font-size: 44px;
	width: 100%;
}

.slide-sm3dl .carousel-price .price-note {
	left: -27px;
}

.slide-sm3dl .logo-new-3ds {
	max-width: 175px;
}

.hardware-sm3dl, .sm3dl-faceplate-1, .sm3dl-faceplate-2 {
	position: absolute;
	opacity: 0;
	transform: translateY(100px);
}

.sm3dl-logo {
	position: absolute;
	opacity: 0;
	transform: scale(0.1, 0.1);
	will-change: transform, opacity;
	width: 23.73%;
	top: 5%;
	left: 0;
	transition: all 400ms cubic-bezier(.87, -.41, .19, 1.44) 1.4s;
}

.hardware-sm3dl {
	width: 43%;
	max-width: 439px;
	will-change: transform;
	bottom: -14%;
	left: 29%;
	transition: all 500ms cubic-bezier(.87, -.41, .19, 1.44) 1s;
}

.sm3dl-faceplate-1 {
	width: 23.73%;
	max-width: 243px;
	will-change: transform;
	bottom: -18%;
	left: 8%;
	transition: all 500ms cubic-bezier(.87, -.41, .19, 1.44) 1.3s;
}

.sm3dl-faceplate-2 {
	width: 23.73%;
	max-width: 243px;
	will-change: transform;
	bottom: -18%;
	right: 8%;
	transition: all 500ms cubic-bezier(.87, -.41, .19, 1.44) 1.3s;
}

.is-active .sm3dl-logo {
	transform: scale(1, 1);
	opacity: 1;
}

.is-active .hardware-sm3dl {
	transform: translateY(0);
	opacity: 1;
}

.is-active .sm3dl-faceplate-2 {
	transform: rotate(18deg) translateY(0);
	opacity: 1;
}

.is-active .sm3dl-faceplate-1 {
	transform: rotate(-18deg) translateY(0);
	opacity: 1;
}

@media screen and (min-width: 769px) {
	.slide-sm3dl .centered-esrb {
		bottom: 3%;
		right: 0;
		position: absolute;
		color: #000;
		font-size: .7em;
		text-align: center;
		line-height: .7em;
	}
	.slide-sm3dl .centered-esrb img {
		margin: 0 auto;
	}
}

@media screen and (max-width: 980px) {
	.slide-sm3dl .logo-new-3ds {
		margin-top: 0;
	}
	.hardware-sm3dl {
		width: 38%;
		left: 31%;
	}
	.sm3dl-faceplate-1 {
		width: 21.73%;
		bottom: -18%;
		left: 12%;
	}
	.sm3dl-faceplate-2 {
		width: 21.73%;
		bottom: -18%;
		right: 12%;
	}
	.slide-sm3dl .title {
		display: none;
	}
	.slide-sm3dl .copy {
		width: 29%;
	}
	.slide-sm3dl p {
		font-size: 14px;
		margin-bottom: 10px;
	}
	.slide-sm3dl .btn-slider-cta {
		margin-top: 10px;
	}
}

@media screen and (max-width: 768px) {
	.slide-sm3dl .copy {
		width: 30%;
	}
	.slide-sm3dl .carousel-price .price-note {
		left: -23px;
	}
	.slide-sm3dl .logo-new-3ds {
		left: 36%;
		max-width: 204px;
		width: 29%;
		margin-top: 2%;
		position: absolute;
	}
}

@media screen and (max-width: 570px) {
	.slide-sm3dl .copy {
		width: 25%;
	}
	.slide-sm3dl .carousel-price {
		float: none;
		margin-top: 0;
		margin-left: 0;
		font-size: 35px;
	}
	.sm3dl-logo {
		top: 1%;
		width: 28%;
	}
	.slide-sm3dl .logo-new-3ds {
		position: absolute;
		width: 33%;
		top: 1%;
		margin-top: 0;
		left: 33%;
	}
	.sm3dl-faceplate-1 {
		width: 28%;
		left: 0;
		bottom: -25%;
	}
	.sm3dl-faceplate-2 {
		width: 28%;
		right: 0;
		bottom: -25%;
	}
	.slide-sm3dl .btn-slider-cta {
		background-color: rgba(255, 255, 255, 0.4);
		margin-left: 0;
		margin-top: 10px;
		padding: 5px;
		font-size: 15px;
		line-height: 15px;
	}
}

@media screen and (max-width: 500px) {
	.slide-sm3dl .copy {
		width: 33%;
	}
}


/*	-----------------------------------
	Slide Super Mario 3D Land
	----------------------------------- */

@-webkit-keyframes bg-lime-slide {
	0% {
		background-position: 0 bottom;
	}
	100% {
		background-position: -1250px bottom;
	}
}

@-moz-keyframes bg-lime-slide {
	0% {
		background-position: 0 bottom;
	}
	100% {
		background-position: -1250px bottom;
	}
}

@keyframes bg-lime-slide {
	0% {
		background-position: 0 bottom;
	}
	100% {
		background-position: -1250px bottom;
	}
}

.slide-lime {
	background-image: url('/images/page/3ds/hero/lime-bg-background.png');
	background-position: center bottom;
	background-repeat: repeat-x;
	text-align: left;
	-webkit-animation: bg-lime-slide 30s linear infinite;
	-moz-animation: bg-lime-slide 30s linear;
	animation: bg-lime-slide 30s linear infinite;
}

.secondary-lime {
	background-image: url('/images/page/3ds/hero/lime-bg-foreground.png');
	background-position: center bottom;
	background-repeat: repeat-x;
	text-align: left;
	-webkit-animation: bg-lime-slide 20s linear infinite;
	-moz-animation: bg-lime-slide 20s linear;
	animation: bg-lime-slide 20s linear infinite;
}

.slide-lime .copy {
	position: absolute;
	width: 30%;
	top: 6%;
	right: 0;
}


/*	---- Animated Elements ---- */

.slide-lime img.character {
	display: block;
	position: absolute;
	left: 44%;
	bottom: 10%;
	width: 25%;
	max-width: 253px;
	will-change: transform;
	transform: translate( 110%, 110%) scale( 0.5, 0.5);
	transition: transform 500ms cubic-bezier(.87, -.41, .19, 1.44) 1.2s;
}

.slide-lime.is-active img.character {
	transform: translate(0, 0) scale(1, 1);
}

.hardware-lime {
	position: absolute;
	opacity: 0;
	transform: translateY(100px);
	width: 43%;
	max-width: 436px;
	top: 10%;
	left: 6%;
	will-change: transform, opacity;
	transition: all 500ms cubic-bezier(.87, -.41, .19, 1.44) 1s;
}

.slide-lime.is-active .hardware-lime {
	transform: translateY(0);
	opacity: 1;
}

.slide-lime .title {
	position: absolute;
	opacity: 0;
	width: 44%;
	bottom: 12%;
	left: 6%;
	max-width: 429px;
	will-change: opacity;
	transition: opacity 300ms cubic-bezier(.87, -.41, .19, 1.44) 1.2s;
}

.slide-lime.is-active .title {
	opacity: 1;
}


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

.slide-lime p {
	color: #000;
}

.slide-lime .btn-slider-cta {
	margin-top: 10px;
	font-size: 30px;
	line-height: 20px;
	padding: 0.5em 0;
	max-width: 300px;
	width: auto;
	background-color: rgba(255, 255, 255, 0.4);
}

.slide-lime .btn-slider-cta:hover {
	background: #fff;
}

.slide-lime .carousel-price {
	color: #000;
	font-size: 84px;
	width: 100%;
}

.slide-lime .carousel-price .price-note {
	left: -50px;
}

.slide-lime .logo-new-3ds {
	max-width: 175px;
}

@media screen and (max-width: 1250px) {
	.slide-lime, .secondary-lime {
		background-size: 100vw auto;
	}
	.slide-lime {
		-webkit-animation: bg-lime-low 30s linear infinite;
		-moz-animation: bg-lime-low 30s linear;
		animation: bg-lime-low 30s linear infinite;
		background-position: 0 110%;
	}
	@-webkit-keyframes bg-lime-slide {
		0% {
			background-position: 0 bottom;
		}
		100% {
			background-position: -100vw bottom;
		}
	}
	@-moz-keyframes bg-lime-slide {
		0% {
			background-position: 0 bottom;
		}
		100% {
			background-position: -100vw bottom;
		}
	}
	@keyframes bg-lime-slide {
		0% {
			background-position: 0 bottom;
		}
		100% {
			background-position: -100vw bottom;
		}
	}
	@-webkit-keyframes bg-lime-low {
		0% {
			background-position: 0 110%;
		}
		100% {
			background-position: -100vw 110%;
		}
	}
	@-moz-keyframes bg-lime-low {
		0% {
			background-position: 0 110%;
		}
		100% {
			background-position: -100vw 110%;
		}
	}
	@keyframes bg-lime-low {
		0% {
			background-position: 0 110%;
		}
		100% {
			background-position: -100vw 110%;
		}
	}
}

@media screen and (min-width: 769px) {
	.slide-lime .centered-esrb {
		bottom: 12%;
		left: 0;
		position: absolute;
		color: #000;
		font-size: .7em;
		text-align: center;
		line-height: .7em;
	}
	.slide-lime .centered-esrb img {
		margin: 0 auto;
	}
}

@media screen and (max-width: 980px) {
	.hardware-lime {
		top: 5%;
	}
	.slide-lime .title {
		width: 44%;
		bottom: 15%;
	}
	.slide-lime .copy {
		width: 29%;
	}
	.slide-lime img.character {
		bottom: 19%;
	}
	.slide-lime .carousel-price {
		font-size: 64px;
	}
	.slide-lime .carousel-price .price-note {
		left: -42px;
	}
	.slide-lime .btn-slider-cta {
		font-size: 26px;
		max-width: 220px;
	}
}

@media screen and (max-width: 980px) and (min-width: 769px) {
	.tab {
		font-size: 0.9rem;
	}
}

@media screen and (max-width: 768px) {
	.hardware-lime {
		width: 38%;
		left: 3%;
		top: 20%;
	}
	.slide-lime .title {
		width: 48%;
		bottom: 3%;
		left: 1%;
	}
	.slide-lime .logo-new-3ds {
		left: 1%;
		max-width: 204px;
		width: 29%;
		margin-top: 1%;
		position: absolute;
	}
	.slide-lime .btn-slider-cta {
		font-size: 24px;
		padding: 0.25em;
		line-height: 1em;
	}
	.slide-lime .carousel-price {
		font-size: 48px;
	}
	.slide-lime .carousel-price .price-note {
		left: -2.5em;
		font-size: 0.25em;
	}
}

@media screen and (max-width: 570px) {
	.slide-lime .copy {
		width: 25%;
	}
	.slide-lime .carousel-price {
		float: none;
		margin-top: 0;
		margin-left: 0;
		font-size: 35px;
	}
	.slide-lime .btn-slider-cta {
		background-color: rgba(255, 255, 255, 0.4);
		margin-left: 0;
		margin-top: 10px;
		padding: 5px;
		font-size: 15px;
		line-height: 15px;
	}
}

@media screen and (max-width: 500px) {
	.slide-lime .logo-new-3ds {
		left: 4%;
		top: 4%;
		width: 35%;
	}
	.slide-lime .btn-slider-cta {
		display: none;
	}
	.hardware-lime {
		width: 55%;
	}
	.slide-lime img.character {
		width: 40%;
		left: auto;
		right: 2%;
		bottom: 5%;
	}
	.slide-lime .title {
		width: 66%;
	}
	.slide-lime .copy {
		width: 35%;
	}
	.slide-lime .carousel-price {
		font-size: 10vw;
	}
}


/* Slide 1 Animation */

@keyframes animationFrames {
	0% {
		transform: translate(0px, 0px);
	}
	50% {
		transform: translate(0px, 5%);
	}
	100% {
		transform: translate(0px, 0px);
	}
}

@-moz-keyframes animationFrames {
	0% {
		-moz-transform: translate(0px, 0px);
	}
	50% {
		-moz-transform: translate(0px, 5%);
	}
	100% {
		-moz-transform: translate(0px, 0px);
	}
}

@-webkit-keyframes animationFrames {
	0% {
		-webkit-transform: translate(0px, 0px);
	}
	50% {
		-webkit-transform: translate(0px, 5%);
	}
	100% {
		-webkit-transform: translate(0px, 0px);
	}
}

@-o-keyframes animationFrames {
	0% {
		-o-transform: translate(0px, 0px);
	}
	50% {
		-o-transform: translate(0px, 5%);
	}
	100% {
		-o-transform: translate(0px, 0px);
	}
}

@-ms-keyframes animationFrames {
	0% {
		-ms-transform: translate(0px, 0px);
	}
	50% {
		-ms-transform: translate(0px, 5%);
	}
	100% {
		-ms-transform: translate(0px, 0px);
	}
}


/* Slide 3 Animation */

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@-moz-keyframes spin {
	0% {
		-moz-transform: rotate(0deg);
	}
	100% {
		-moz-transform: rotate(360deg);
	}
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@-ms-keyframes spin {
	0% {
		-ms-transform: rotate(0deg);
	}
	100% {
		-ms-transform: rotate(360deg);
	}
}

@-o-keyframes spin {
	0% {
		-o-transform: rotate(0deg);
	}
	100% {
		-o-transform: rotate(360deg);
	}
}

@keyframes wiggleA {
	0% {
		transform: scale(1, 1) rotate(0deg);
	}
	50% {
		transform: scale(1.1, 1.1) rotate(5deg);
	}
	100% {
		transform: scale(1, 1) rotate(0deg);
	}
}

@-moz-keyframes wiggleA {
	0% {
		-moz-transform: scale(1, 1) rotate(0deg);
	}
	50% {
		-moz-transform: scale(1.1, 1.1) rotate(5deg);
	}
	100% {
		-moz-transform: scale(1, 1) rotate(0deg);
	}
}

@-webkit-keyframes wiggleA {
	0% {
		-webkit-transform: scale(1, 1) rotate(0deg);
	}
	50% {
		-webkit-transform: scale(1.1, 1.1) rotate(5deg);
	}
	100% {
		-webkit-transform: scale(1, 1) rotate(0deg);
	}
}

@-o-keyframes wiggleA {
	0% {
		-o-transform: scale(1, 1) rotate(0deg);
	}
	50% {
		-o-transform: scale(1.1, 1.1) rotate(5deg);
	}
	100% {
		-o-transform: scale(1, 1) rotate(0deg);
	}
}

@-ms-keyframes wiggleA {
	0% {
		-ms-transform: scale(1, 1) rotate(0deg);
	}
	50% {
		-ms-transform: scale(1.1, 1.1) rotate(5deg);
	}
	100% {
		-ms-transform: scale(1, 1) rotate(0deg);
	}
}

@keyframes wiggleB {
	0% {
		transform: scale(1, 1) rotate(0deg);
	}
	50% {
		transform: scale(1.1, 1.1) rotate(-5deg);
	}
	100% {
		transform: scale(1, 1) rotate(0deg);
	}
}

@-moz-keyframes wiggleB {
	0% {
		-moz-transform: scale(1, 1) rotate(0deg);
	}
	50% {
		-moz-transform: scale(1.1, 1.1) rotate(-5deg);
	}
	100% {
		-moz-transform: scale(1, 1) rotate(0deg);
	}
}

@-webkit-keyframes wiggleB {
	0% {
		-webkit-transform: scale(1, 1) rotate(0deg);
	}
	50% {
		-webkit-transform: scale(1.1, 1.1) rotate(-5deg);
	}
	100% {
		-webkit-transform: scale(1, 1) rotate(0deg);
	}
}

@-o-keyframes wiggleB {
	0% {
		-o-transform: scale(1, 1) rotate(0deg);
	}
	50% {
		-o-transform: scale(1.1, 1.1) rotate(-5deg);
	}
	100% {
		-o-transform: scale(1, 1) rotate(0deg);
	}
}

@-ms-keyframes wiggleB {
	0% {
		-ms-transform: scale(1, 1) rotate(0deg);
	}
	50% {
		-ms-transform: scale(1.1, 1.1) rotate(-5deg);
	}
	100% {
		-ms-transform: scale(1, 1) rotate(0deg);
	}
}


/*	-----------------------------------
	Slide Black Friday New Nintendo 3DS Super Mario Edition
	----------------------------------- */

.slide-blackfriday {
	background-image: url('/images/page/3ds/hero/super-mario-bg-art.jpg');
	background-position: center bottom;
	background-repeat: no-repeat;
	text-align: left;
}

.slide-blackfriday .hardware-black, .slide-blackfriday .hardware-white {
	position: absolute;
	width: 30vw;
	max-width: 326px;
	min-width: 150px;
	transform: translate3d(0, 130%, 0);
}

.slide-blackfriday .hardware-black {
	left: 0;
	top: 5%;
	will-change: transform;
}

.slide-blackfriday.is-active .hardware-black {
	animation: 500ms cubic-bezier(0.68, -0.55, 0.27, 1.75) 1.7s forwards slideInUp;
}

.slide-blackfriday .hardware-white {
	left: 15%;
	top: 15%;
	z-index: 2;
	will-change: transform;
}

.slide-blackfriday.is-active .hardware-white {
	animation: 500ms cubic-bezier(0.68, -0.55, 0.27, 1.75) 1.9s forwards slideInUp;
}

.slide-blackfriday .logo-n3ds {
	position: absolute;
	max-width: 561px;
	min-width: 250px;
	width: 55vw;
	right: 0;
	top: 5%;
	transform: scale(0);
	will-change: transform;
}

.slide-blackfriday.is-active .logo-n3ds {
	animation: 500ms cubic-bezier(0.68, -0.55, 0.27, 1.75) 1.3s forwards popIn;
}

.slide-blackfriday .copy {
	position: absolute;
	display: flex;
	align-items: center;
	right: 5%;
	bottom: 18%;
}

.slide-blackfriday .copy .carousel-price {
	color: #000;
	font-size: 80px;
}

.slide-blackfriday .copy .btn-container {
	background: #000;
	padding: 5px;
	max-height: 70px;
}

.slide-blackfriday .copy .btn-slider-cta {
	display: inherit;
	color: #fff;
	background: #000;
	border: solid 2px white;
	padding: 15px 10px;
	margin: 0;
	width: inherit;
	display: inherit;
}

@media screen and (max-width: 920px) {
	.slide-blackfriday .hardware-black {
		left: 2%;
	}
	.slide-blackfriday .copy .btn-slider-cta {
		font-size: 18px;
		max-height: 55px;
		line-height: 20px;
	}
	.slide-blackfriday .copy .carousel-price {
		font-size: 60px;
	}
}

@media screen and (max-width: 750px) {
	.slide-blackfriday .copy {
		bottom: 10%;
		right: 0;
	}
	.slide-blackfriday .copy .carousel-price {
		font-size: 75px;
	}
	.slide-blackfriday .copy .btn-container {
		display: none;
	}
}

@media screen and (max-width: 500px) {
	.slide-blackfriday {
		background-image: url('/images/page/3ds/hero/super-mario-bg-art-mob.jpg');
	}
	.slide-blackfriday .wide-wrapper {
		padding-top: 20%;
	}
	.slide-blackfriday .hardware-white {
		top: inherit;
		bottom: -18%;
	}
	.slide-blackfriday .hardware-black {
		left: 2%;
		bottom: -10%;
		top: inherit;
	}
	.slide-blackfriday .logo-n3ds {
		min-width: 300px;
		width: 80vw;
		left: 50%;
		transform: translateX(-50%) scale(0);
		top: 5%;
	}
	.slide-blackfriday.is-active .logo-n3ds {
		animation: 500ms cubic-bezier(0.68, -0.55, 0.27, 1.75) 1.3s forwards popInMob;
	}
	.slide-blackfriday .hardware-black, .slide-blackfriday .hardware-white {
		min-width: 80px;
	}
	.slide-blackfriday .copy .carousel-price {
		font-size: 15vw;
	}
	body:lang(en-CA) .slide-blackfriday .copy .carousel-price {
		font-size: 13vw;
	}
}

@keyframes popIn {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1, 1);
	}
}

@keyframes popInMob {
	0% {
		transform: scale(0) translateX(-50%);
	}
	100% {
		transform: scale(1, 1) translateX(-50%);
	}
}

@keyframes slideInUp {
	0% {
		transform: translate3d(0, 130%, 0);
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}

.is-active {
	opacity: 1;
}

@media screen and (max-width: 1549px) {
	.wide-wrapper {
		max-width: 96%;
		min-width: 0px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	.new-hero .wide-wrapper, .new-hero .wrapper {
		max-width: 100%;
	}
}

@media screen and (min-width: 571px) and (max-width: 930px) {
	ul.panels {
		padding-top: calc(200px - 20%);
	}
}


/* 	================================================

	MOBILE VIEW

	================================================ */

@media screen and (max-width: 570px) {
	/* Footer Link */
	p.btn-borders {
		line-height: 1.2;
		padding-left: 5%;
		padding-right: 5%;
	}
}


