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

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

nclood-video .oo-unmute {
	display: none!important;
}

/* New design for the My Nintendo login button. Is triggered by Adobe Target */
@media (min-width: 769px) {
	body.alps-is-guest #global-header .top-nav alps-account-nav.new-design .alps-account-nav .alps-login-door .alps-login-door-button .alps-login-door-title {
		color: #fff;
	}

	body.alps-is-guest #global-header .top-nav alps-account-nav.new-design .alps-account-nav .alps-login-door .alps-login-door-button .alps-login-door-icon {
		display: none;
	}

	body.alps-is-guest #global-header .top-nav alps-account-nav.new-design .alps-account-nav .alps-login-door .alps-login-door-button {
		background-color: #e60012;
		border-radius: 3px;
		padding: 7px;
	}

	body.alps-is-guest #global-header .top-nav alps-account-nav.new-design .alps-account-nav .alps-login-door .alps-login-door-button::before {
		content: '';
		display: inline-block;
		vertical-align: middle;
		margin-right: 8px;
		padding-right: 8px;
		width: 34px;
		height: 23px;
		border-right: 1px solid #fff;
		background: url(/images/global/logos/logo-my-nintendo.svg) left center no-repeat;
		background-size: contain;
	}

	body.alps-is-guest #global-header .top-nav alps-account-nav.new-design .alps-account-nav .alps-login-door .alps-login-door-button:hover {
		background-color: #ff4554;
	}
}

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

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

body:lang(pt-BR),
body:lang(es-CO) {
	padding-top: 0px;
}

@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(122.84vw + 1rem + 85px);
   }
   #global-header.pin.expanded.gamestore .expanded-nav-container {
      height: calc(122.84vw + 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(fr-CA) #global-header .games-buynow,
body:lang(es-LA) #global-header .games-buynow {
   visibility: hidden;
}

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: 16%;
   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;
   white-space: nowrap;
}

#global-header nav .wrapper a[data-section="switch"] {
	width: 18%;
}
#global-header nav .wrapper a[data-section="threeds"] {
	width: 20%;
}
#global-header nav .wrapper a[data-section="gamestore"] {
	width: 14%;
}
#global-header nav .wrapper a[data-section="mynintendo"] {
	width: 14%;
}
#global-header nav .wrapper a[data-section="support"] {
	width: 10%;
}
#global-header nav .wrapper a[data-section="amiibo"] {
	width: 8%;
}

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

body:lang(fr-CA) #global-header nav .wrapper a[data-section="switch"] {
    width: 21%;
}

body:lang(fr-CA) #global-header nav .wrapper a[data-section="threeds"] {
    width: 20%;
}

body:lang(fr-CA) #global-header nav .wrapper a[data-section="gamestore"] {
    width: 16%;
}

body:lang(fr-CA) #global-header nav .wrapper a[data-section="amiibo"], body:lang(fr-CA) #global-header nav .wrapper a[data-section="support"] {
    width: 13%;
}

body:lang(fr-CA) #global-header nav .wrapper a[data-section="mynintendo"] {
    width: 17%;
}

@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%;
   }
   #global-header nav .wrapper a svg {
      height: 100%;
   }

   body[lang] #global-header nav .wrapper a[data-section="switch"] {
      width: 30%;
   }
   body[lang] #global-header nav .wrapper a[data-section="threeds"] {
      width: 35%;
   }
   body[lang] #global-header nav .wrapper a[data-section="gamestore"] {
      width: 22%;
   }
   body[lang] #global-header nav .wrapper a[data-section="additional"] {
      width: 18%;
   }
   body:lang(fr-CA) #global-header nav .wrapper a[data-section="gamestore"],
   body:lang(fr-CA) #global-header nav .wrapper a[data-section="additional"] {
       width: 20%;
   }

   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="switch"]:hover, #global-header.switch nav .wrapper a[data-section="switch"] {
   background: #fff !important;
   color: #484848 !important
}


#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;
   transition: background-color 200ms linear 100ms;
   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 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-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-overview .bg-layer {
   background-image: url("/images/global/navigation/threeds/overview.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-overview .bg-layer {
      background-image: url("/images/global/navigation/threeds/overview@2x.jpg")
   }
}

#global-header .expanded-nav-container .expanded-nav-threeds a.threeds-compare .bg-layer {
   background-image: url("/images/global/navigation/threeds/compare.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-compare .bg-layer {
      background-image: url("/images/global/navigation/threeds/compare@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-switch {
    background-color: #fff;
    background-image: linear-gradient(-180deg, #FFFFFF 25%, #DADADA 100%);
}
#global-header .expanded-nav-container .expanded-nav-switch img.mario-jumping {
    left: -240px;
    top: 10px;
    animation-delay: 1s
}

#global-header .expanded-nav-container .expanded-nav-switch img.pipe {
    left: -200px;
    top: 370px
}

#global-header .expanded-nav-container .expanded-nav-switch img.paratroopa {
    width: 205px;
    left: calc(100% + 35px)
}

#global-header .expanded-nav-container .expanded-nav-switch img.mushroom {
    top: 320px;
    left: calc(100% - 250px)
}

#global-header .expanded-nav-container .expanded-nav-switch img.star {
    top: 200px;
    left: calc(100% - 150px);
    width: 140px
}

#global-header .expanded-nav-container .expanded-nav-switch img.brick1 {
    top: 320px;
    left: calc(100% - 15px)
}

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

#global-header .expanded-nav-container .expanded-nav-switch img.brick2 {
    top: 320px;
    left: calc(100% + 210px)
}

#global-header .expanded-nav-container .expanded-nav-switch a {
   background: #E60012;
}

#global-header .expanded-nav-container .expanded-nav-switch a img.hide-large {
	position: absolute;
	top: 10%;
	left: 42%;
	width: 16%;
}

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



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

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

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

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

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


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

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


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

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

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

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

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

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

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

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


#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-switch .bg-layer {
   background-image: url("/images/global/navigation/gamestore/switch-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/switch-games@2x.jpg")
   }
}


#global-header .expanded-nav-container .expanded-nav-gamestore a.games-mobilegames .bg-layer {
   background-image: url("/images/global/navigation/gamestore/mobile-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-mobilegames .bg-layer {
      background-image: url("/images/global/navigation/gamestore/mobile-games@2x.jpg")
   }
}

#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-switch img {
   width: 40%
}

#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-wiiu {
   background-color: #3cb1d9;
}
#global-header .expanded-nav-container .expanded-nav-additional a.additional-wiiu img {
   width: 80%;
   left: 10%;
}
#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: #ff0000; }
		section.global-footer-bottom a.icon-tumblr { color: #2c4760; }
		section.global-footer-bottom a.icon-instagram	{ color: #d32c69; }

		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;
	}
	#global-header .expanded-nav-container .expanded-nav-switch a.switch-games .link-title {
        font-size:.95em
    }

    #global-header .expanded-nav-container .expanded-nav-switch a.switch-home .link-title {
        font-size: .9em
    }

    #global-header .expanded-nav-container .expanded-nav-gamestore a.games-switch .link-title {
        font-size:.95em
    }
}

@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: 930px) {
	#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;
}
.switch {
	border-bottom: 3px solid #e60012;
}
.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;
	}
	
	.switch .date,
	.date.switch {
		border-color: #e60012;
	}
	.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: 10001;
	-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;
			}


}

section#consumerChat{
	position:fixed;
	top:80px;
	right:0;
	z-index:99;
	margin-right:-356px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	/* adds animation for all transitions */	
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
	-webkit-text-size-adjust: none;
}

section#consumerChat #myChatLink{display:none !important;}


section#consumerChat.rn_ChatAvailable iframe {
	display: block;
}

section#consumerChat iframe {
	display: none;
}

section#consumerChat.is-open{
	margin-right:0px;
}


section#consumerChat #disabledFrame{
	display: block;
	position: relative;
	margin:0 20px;
    padding-top: 3em;
	width: 315px;
	padding-bottom: 150px;
	
}

section#consumerChat.rn_ChatAvailable #disabledFrame {
	display: none;
}	

	#disabledFrame span.h2 {
		font-family: 'LatoLight';
		font-size: 30px;
		color: #000000;
		line-height: 24px;
	}
	
	#disabledFrame .header-col {
		border-bottom: 1px solid #DADADA;
		margin-bottom: 1.5em;
		padding-bottom: 0.5em;
	}
	
	#disabledFrame p.b2 {
		font-family: 'LatoLight';
		font-size: 16px;
		color: #000000;
		line-height: 20px;
	}
	
	#disabledFrame span.b3 {
		font-family: 'LatoBold';
		font-size: 16px;
		color: #000000;
		line-height: 20px;
	}

	#disabledFrame .paratrooper-row {
		position: absolute;
		width: 100%;
		bottom: 1em;
	}



section#consumerChat nav{
	float:left;
}

section#consumerChat .main-content{
	float:right;
	-webkit-border-top-left-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.50);
	background: #F6F6F6;
	overflow: hidden;	
}

section#consumerChat.is-disabled .main-content {
	background-image: url("/images/global/chat-tile.png");
	background-repeat: repeat-x;
	background-position: 0 85%;
}

section#consumerChat .main-content iframe {
	margin:0;
	width: 356px;
	height: 632px;
}
	
section#consumerChat nav{
	
	background: #E7E7E7;
	background-image: url("/images/global/oracle_chat.png"); /* fallback */
	background-image: url("/images/global/oracle_chat.png"), linear-gradient(-90deg, #F6F6F6 0%, #E7E7E7 42%); /* W3C */
	
	cursor:pointer;
	background-repeat: no-repeat;
	width:44px;
	height:173px;
	-webkit-border-top-left-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;

	top: 150px;
    left: 0px;
    position: relative;

	box-shadow: -2px 1px 2px 0px rgba(0,0,0,0.50)
}

section#consumerChat.is-open nav {
	background: #E7E7E7;
	background-image: url("/images/global/oracle_close.png"); /* fallback */
	background-image: url("/images/global/oracle_close.png"), linear-gradient(-90deg, #F6F6F6 0%, #E7E7E7 42%); /* W3C */
}

section#consumerChat.is-unsupported {
	display: none!important;
}

body {
	position: relative;
}

.modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10001;
	opacity: 0;
	pointer-events: none;
	transition: opacity 200ms ease-in-out;
	cursor: pointer;
}

.modal-overlay.opened {
	opacity: 1;
	pointer-events: auto;
}

.global-modal {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	max-width: 880px;
	width: 100%;
	padding: 2em 5% 2em;
	box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	cursor: auto;
	background: url('/images/global/pattern-modal/bg.png') repeat #fff;
}

.global-modal h1 + .btn {
	margin-top: 2em;
}

.global-modal .b3 {
	font-family: 'LatoBold', sans-serif;
}

.global-modal p:not(.b3) {
	font-size: 1em;
	font-family: 'LatoRegular', sans-serif;
}

.global-modal .btn-close {
	position: absolute;
	top: 0;
	right: 0;
	padding: 1em;
	background: none;
	border: none;
	outline: none;
	cursor: pointer;
}

.global-modal .btn {
	width: auto;
	padding: 0.5em 1em;
	margin: 0;
}

.global-modal.uncloseable .btn-close {
	display: none;
}

.global-modal {
	display: flex;
	align-items: flex-start;
}

.global-modal .content {
	flex: 1;
}

.global-modal .graphic {
	width: 25%;
	margin-left: 1em;
}

.global-modal .graphic img {
	width: 100%;
}

@media (max-width: 570px) {
	.global-modal .graphic {
		display: none;
	}
}

/* Generated by grunt-webfont */


@font-face {
	font-family:"accessory-icons";
	src:url("/asset/font/accessory-icons/accessory-icons.eot?93e89b265d1a1c29df2d59c551893a71");
	src:url("/asset/font/accessory-icons/accessory-icons.eot?#iefix") format("embedded-opentype"),
		url("/asset/font/accessory-icons/accessory-icons.woff?93e89b265d1a1c29df2d59c551893a71") format("woff"),
		url("/asset/font/accessory-icons/accessory-icons.ttf?93e89b265d1a1c29df2d59c551893a71") format("truetype");
	font-weight:normal;
	font-style:normal;
}

.icons, [class*="icons-"] {
	font-family:"accessory-icons";
	display:inline-block;
	vertical-align:middle;
	line-height:1;
	font-weight:normal;
	font-style:normal;
	speak:none;
	text-decoration:inherit;
	text-transform:none;
	text-rendering:optimizeLegibility;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
}


/* Icons */


.icons-board:before {
	content:"\f101";
}


.icons-controller:before {
	content:"\f102";
}


.icons-four-player:before {
	content:"\f103";
}


.icons-four-wii:before {
	content:"\f104";
}


.icons-gun:before {
	content:"\f105";
}


.icons-keyboard:before {
	content:"\f106";
}


.icons-microphone:before {
	content:"\f107";
}


.icons-nunchuck:before {
	content:"\f108";
}


.icons-sd-card:before {
	content:"\f109";
}


.icons-usb-drive:before {
	content:"\f10a";
}


.icons-wand-plus-controller:before {
	content:"\f10b";
}


.icons-wheel:before {
	content:"\f10c";
}


.icons-wii-plus-nunchuck:before {
	content:"\f10d";
}


.icons-wii-wheel:before {
	content:"\f10e";
}


.icons-wiiu-pad:before {
	content:"\f10f";
}


.ratings-and-reviews {
	color: #777;
}

.ratings-and-reviews > * {
	transition: opacity 250ms ease-in-out;
}
.ratings-and-reviews:not(.empty) > .no-reviews {
	display: none;
}

.ratings-and-reviews.empty > *:not(.no-reviews) {
	display: none;
}

.ratings-and-reviews.empty > .no-reviews {
	display: flex;
	flex-wrap: wrap;
}

.ratings-and-reviews.empty > .no-reviews p {
	font-family: 'LatoRegular', sans-serif;
	color: #777;
}

.ratings-and-reviews .btn.no-fill {
	background: transparent;
	color: #1660a0;
}

.ratings-and-reviews .btn.no-fill:hover {
	color: #3aa4ff;
}

.ratings-and-reviews:not(.loaded) {
	background: url('/images/page/games/loading-ellipsis.svg') center no-repeat;
	background-size: 50%;
}

.ratings-and-reviews:not(.loaded) > * {
	opacity: 0;
	pointer-events: none;
}

.reviews-summary {
	display: flex;
}

.reviews-summary .boxart {
	margin: 0.5em 1em 0.5em 0;
	min-width: 110px;
	max-width: 150px;
	width: 30%;
}

.ratings-and-reviews .reviews-summary + .btn {
	width: 100%;
	margin: 0.5rem auto 2rem;
}

.ratings-and-reviews .overall-rating {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.ratings-and-reviews .overall-rating > span {
	margin: 0.5rem;
}

.ratings-and-reviews .stars {
	display: flex;
	align-items: center;
}

.ratings-and-reviews .stars .star {
	flex: none;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left center;
}

.ratings-and-reviews .stars .star:not(:last-child) {
	margin-right: 5px;
}

.ratings-and-reviews .overall-rating .stars .star {
	width: 32px;
	height: 30px;
}

.ratings-and-reviews .stars .star.empty {
	background-image: url('/images/page/games/reviews/star-empty.svg');
}

.ratings-and-reviews .stars .star.half {
	background-image: url('/images/page/games/reviews/star-half.svg');
}

.ratings-and-reviews .stars .star.full {
	background-image: url('/images/page/games/reviews/star-full.svg');
}

.ratings-and-reviews .rating-breakdown {
	display: flex;
	flex: 1;
}

.ratings-and-reviews .bar-graph > span {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
}

.ratings-and-reviews .bar-graph > a {
	display: flex;
	align-items: center;
	line-height: 1;
	padding: 0.5rem;
	color: #484848;
	transition: color 200ms ease-in-out, font-size 200ms ease-in-out;
	text-decoration: none;
	will-change: font-size;
}

.ratings-and-reviews .bar-graph > a > * {
	white-space: nowrap;
}

.ratings-and-reviews .bar-graph .num-of-stars {
	width: 5rem;
	font-family: 'LatoBold';
}

.ratings-and-reviews .bar-graph .bar {
	width: 8em;
	box-shadow: 0 0 0 1px #dadada;
	background-position: left center;
	background-repeat: no-repeat;
	height: 1em;
	margin: 0 0.5rem;
	position: relative;
	transition: box-shadow 200ms ease-in-out;
}

.ratings-and-reviews .bar-graph .fill {
	background-color: #FFF02A;
	box-shadow: 0 0 0 1px;
	height: 100%;
	display: inline-block;
	transition: box-shadow 200ms ease-in-out, background-color 200ms ease-in-out;
}

.ratings-and-reviews .bar-graph > a.disabled .fill {
	display: none;
}

.ratings-and-reviews .bar-graph > a:not(.disabled) {
	cursor: pointer;
}

.ratings-and-reviews .bar-graph > a.disabled {
	pointer-events: none;
}

.ratings-and-reviews .bar-graph > a:not(.disabled):hover {
	color: #3AA4FF;
}

.ratings-and-reviews .bar-graph > a:not(.disabled):hover .bar,
.ratings-and-reviews .bar-graph > a.active .bar {
	box-shadow: 0 0 0 1px;
}

.ratings-and-reviews .bar-graph > a:not(.disabled):hover .fill {
	background-color: #3AA4FF;
}

.ratings-and-reviews .bar-graph > a.active .fill {
	background-color: #2576bc;
}

.ratings-and-reviews .bar-graph > a.active {
	font-family: 'LatoBold';
	color: #2576bc;
}

.ratings-and-reviews .bar-graph > a.active {
	font-size: 1.5em;
}

@media (max-width: 600px) {
	.ratings-and-reviews .bar-graph > a.active {
		font-size: 1.125em;
	}
	.ratings-and-reviews .bar-graph .num-of-stars {
		width: 3.5rem;
	}
}

.ratings-and-reviews .write-a-review {
	display: inline-flex;
	align-items: flex-end;
	justify-content: flex-end;
	flex: 1;
}

.ratings-and-reviews .no-reviews .write-a-review {
	flex-direction: column;
	align-items: flex-start;
	margin-left: 1em;
}

.ratings-and-reviews .write-a-review p {
	font-size: 0.875em;
	line-height: 1.25;
	margin: 0.5rem;
	max-width: 18em;
}

.ratings-and-reviews .no-reviews .write-a-review p {
	max-width: none;
}

.ratings-and-reviews .btn {
	width: auto;
	margin: 0.5rem;
	padding: 0.5em 1em;
	white-space: nowrap;
	position: relative;
}

.ratings-and-reviews .btn.review-game.checking {
	color: transparent;
}

.ratings-and-reviews .btn.review-game.checking::after {
	content: '';
	background: url(/images/page/games/loading-ellipsis.svg) center no-repeat;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
}

.ratings-and-reviews .tags {
	border-radius: 10px;
	padding: 0.25em;
	background-color: #F0F0F0;
	display: flex;
	flex-wrap: wrap;
	margin-top: 1em;
}

.ratings-and-reviews .tags span {
	border-radius: 2px;
	padding: 0.25em 0.5em;
	margin: 0.25em;
	background-color: #fff;
	white-space: nowrap;
}

.ratings-and-reviews .controls {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin: 1em 0 0;
}

.ratings-and-reviews .sort-reviews {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #dadada;
	border-radius: 100px;
	padding: 0.5em 1.5em 0.5em 1em;
	line-height: 1;
	font-size: 1.125em;
	font-family: inherit;
	background: url(/images/page/games/reviews/down-chevron.svg) right 0.5em center no-repeat;
	position: relative;
	margin-left: 0.5em;
	outline: none;
	cursor: pointer;
	color: inherit;
}

.ratings-and-reviews .review-list {
	margin-bottom: 1em;
}

.ratings-and-reviews .review-list + p {
	font-size: 1rem;
	margin: 0 0 2em;
}

.ratings-and-reviews .review {
	display: flex;
	padding: 2em 0;
	border-bottom: 1px solid #dadada;
}

.ratings-and-reviews .reviewer-info {
	width: 200px;
	flex: none;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
}

.ratings-and-reviews .reviewer-info img {
	border-radius: 50%;
	width: 84px;
	margin-bottom: 0.5em;
}

.ratings-and-reviews .reviewer-info .nickname {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
}

.ratings-and-reviews .reviewer-info .nickname strong {
	font-size: 1.125em;
}

.ratings-and-reviews .reviewer-info .nickname span {
	font-size: 0.875em;
	margin-top: 0.25em;
}

.ratings-and-reviews .review header {
	display: flex;
	align-items: center;
	line-height: 1;
	margin-bottom: 1.5rem;
	font-size: 1.125em;
}

.ratings-and-reviews .review .stars {
	margin-right: 0;
	padding-bottom: 4px;
}

.ratings-and-reviews .review .star {
	width: 21px;
	height: 20px;
}

.ratings-and-reviews .review header strong {
	margin: 0 1em;
	position: relative;
}

.ratings-and-reviews .review.spoiler:not(.revealed) header strong::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #fff url(/images/page/games/bg-pinstripe-repeating.png) repeat;
}

.ratings-and-reviews .review .review-date {
	flex: 1;
	text-align: right;
	font-size: 0.875rem;
	color: #999;
}

.ratings-and-reviews .review .description {
	flex: 1;
}

.ratings-and-reviews .review.spoiler .description {
	user-select: none;
}

.ratings-and-reviews .review .description p {
	font-size: 1.125em;
	position: relative;
}

.ratings-and-reviews .review.spoiler:not(.revealed) .description p {
	min-height: 6em;
}

.ratings-and-reviews .review.spoiler:not(.revealed) .description p .spoiler-shield {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #fff url('/images/page/games/bg-pinstripe-repeating.png') repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ratings-and-reviews .review.spoiler:not(.revealed) .description p .spoiler-shield a {
	background: #fff;
	border: 1px solid #1660A0;
	border-radius: 2px;
	font-family: 'LatoBold', sans-serif;
	padding: 0.75em 1.25em;
}

.ratings-and-reviews .review.spoiler:not(.revealed) .description p .spoiler-shield a span {
	white-space: nowrap;
}

.ratings-and-reviews .review .helpfulness {
	display: flex;
}

.ratings-and-reviews .helpfulness > span > *:not(:last-child) {
	margin-right: 0.5em;
}

.ratings-and-reviews .see-more {
	text-align: center;
	margin-bottom: 2em;
}

.ratings-and-reviews:not(.more) .see-more {
	display: none;
}

.ratings-and-reviews .see-more .btn {
	padding: 0.5em 10%;
}

@media (max-width: 900px) {
	.ratings-and-reviews .no-reviews .write-a-review {
		width: 100%;
		margin-left: 0;
	}
}

@media (max-width: 768px) {
	.ratings-and-reviews .review header {
		flex-wrap: wrap;
	}
	.ratings-and-reviews .review header strong {
		order: 3;
		margin: 1em 0 0;
		width: 100%;
	}
	.ratings-and-reviews .rating-breakdown {
		flex-wrap: wrap;
	}
}

@media (max-width: 570px) {
	.ratings-and-reviews .bar-graph,
	.ratings-and-reviews .rating-breakdown .btn {
		width: 100%;
	}
	.ratings-and-reviews .review {
		flex-wrap: wrap;
	}
	.ratings-and-reviews .reviewer-info {
		width: 100%;
		flex-direction: row;
		margin-bottom: 1em;
	}
	.ratings-and-reviews .reviewer-info img {
		margin: 0 1em 0 0;
	}
	.ratings-and-reviews .reviewer-info .nickname {
		align-items: flex-start;
	}
	.ratings-and-reviews .review .description p {
		font-size: 1em;
	}
	.ratings-and-reviews .review .helpfulness {
		font-size: 0.875em;
	}
	.reviews-summary {
		flex-direction: column;
	}
	.reviews-summary .boxart {
		margin: 1em 0 1.5em;
		width: 100%;
		max-width: none;
		min-width: 0;
		text-align: center;
	}
}

@media (min-width: 481px) {
	.reviews-summary + a {
		display: none;
	}
}

@media (max-width: 480px) {
	.ratings-and-reviews .write-a-review p {
		font-size: 0.75em;
	}

	.ratings-and-reviews .overall-rating > span {
		font-size: 0.875em;
	}

	.ratings-and-reviews .reviews-summary .write-a-review a {
		display: none;
	}
}

.report-form {
	color: #484848;
}

.report-form h1 {
	font-size: 2em;
	font-family: 'LatoBold';
	color: inherit;
	margin-bottom: 1em;
}

.report-form .field {
	margin-top: 1.25rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.report-form label {
	font-size: 1.5em;
	font-family: 'LatoBold';
	display: flex;
	margin-bottom: 0.875rem;
	align-items: center;
	flex-wrap: wrap;
}

.report-form label small {
	font-size: 1rem;
	font-family: 'LatoRegular';
	color: #999;
	margin-right: 0.5rem;
	white-space: nowrap;
	margin: 0.5em 0.5em 0.5em 0;
}

.report-form input,
.report-form textarea {
	display: block;
	width: 100%;
	color: inherit;
	font-size: 1.125em;
	font-family: inherit;
	border: 1px solid #999;
	border-radius: 2px;
	padding: 0.75rem 1rem;
	outline: none;
}

.report-form input:focus,
.report-form textarea:focus {
	border-color: #32A2FF;
}

.report-form .field.has-error input,
.report-form .field.has-error textarea {
	border-color: #f00;
}

.report-form textarea {
	min-height: 13em;
	resize: vertical;
}

.report-form textarea + p {
	margin: 0.5em 0;
	text-align: right;
	color: #999;
	width: 100%;
}

@media (max-width: 768px) {
	.report-form h1 {
		text-align: center;
	}
}

.report-form .buttons {
	margin-top: 2em;
}

.global-modal .report-form .btn {
	width: auto;
	padding: 0.5em 3em;
	margin: 0 1em 1em 0;
}

@media (max-width: 420px) {
	.global-modal .report-form .btn {
		width: 100%;
		margin: 0 0 1em;
	}
}

.global-modal .report-form .btn.no-fill {
	background: transparent;
	color: #2576bc;
}

@media (max-width: 570px) {
	.report-form .btn {
		width: 100%;
	}
}

.report-form .reason {
	display: inline-flex;
	align-items: center;
	margin: 0.75em 1em;
	cursor: pointer;
	min-width: 11em;
	width: calc((100% / 3) - 2em);
}

.report-form .reason .check-mark {
	color: transparent;
	background-color: #dadada;
	padding: 0.25em;
	margin-right: 0.5em;
	transition: all 150ms ease-in-out;
}

.report-form .reason .check-mark svg {
	display: block;
}

.report-form .reason:hover .check-mark {
	color: #999;
}

.report-form .reason.selected .check-mark {
	color: #fff;
	border-radius: 50%;
	background-color: #2576BC;
}

.report-form .error {
	display: inline-flex;
	padding: 0.5em 0.75em;
	align-items: center;
	background: #f00;
	color: #fff;
	border-radius: 4px;
	margin: 0.5em 0;
	font-size: 1rem;
	font-family: 'LatoRegular', sans-serif;
	white-space: nowrap;
}

.report-form .error svg {
	width: 0.875em;
	height: 0.875em;
	margin-left: 0.75em;
}

body:lang(fr-CA) .btn-preview {
	display: none!important;
}

table.e3award td:first-child {
	width: 25% ! important;
}
	table.e3award td:first-child img {
		max-height: 150px;
	}

.reviews-row {
	border-top: 1px solid #000000;
	border-bottom: 1px solid #000000;
	padding: 1rem;
	margin: 2rem 0;
	text-align: left;
}
	.reviews-row span.headline {
		font-weight: 900;
	    font-size: 32px;
	    color: #383838;
	    line-height: 1.5em;
	    margin: 0 0 0.4em;
	    display: block;
	}

	.reviews-row p {
		font-weight: 700;
		font-style: italic;
		font-size: 16px;
		color: #777777;
		line-height: 1.5em;
	}
		.reviews-row p a {
			font-weight: 400;
		}


table.e3award td:last-child {
	vertical-align: middle ! important;
	width: 75% ! important;
}

div.page-content {
	position: relative;
	padding-top: 10px;
}
	section .section-title {
		display: inline-block;
	}
	section .section-title + a {
		display: inline-block;
		float: right;
		position: relative;
		top: 5px;
	}

h2.no-results {
	text-align: left;
	margin-bottom: 5px;
}

p.no-results {
	margin-bottom: 3em;
	margin-top: 2em;
}

	p.no-results strong {
		font-size: 20px;
	}

.disabledCheck {
	opacity: 0.3;
}

/* Coming soon list */

div#coming-soon.carousel ul.panels li.WiiU:after,
div#coming-soon.carousel ul.panels li.threeDS:after {
	display: none;
}

div#coming-soon.carousel ul.panels li.WiiU,
div#coming-soon.carousel ul.panels li.threeDS {
	border-bottom: none;
}

div#coming-soon.carousel.multiple p {
	display: block;
}

div#coming-soon.carousel.multiple p.b3 {
	border-bottom: none;
}

div#coming-soon.carousel ul.panels li .date {
	margin-bottom: 5px;
}

/*	-----------------------------------
	Collapsible Games Search Drawer
	----------------------------------- */
form#search-games-header {
	position: relative;
	width: 100%;
}
body.pin-search form#search-games-header {
	position: fixed;
	z-index: 3;
}
body.pin-shadow form#search-games-header {
	box-shadow: 0 3px 5px rgba(0,0,0,0.1);
}

	/* --- Search Bar --- */
	div.search-bar {
		background: rgba(255,255,255,0.95);
		font-size: 18px;
		min-height: 64px;
		margin: 0 auto;
		padding: 15px 0 0;
	}
		div.search-bar ul {
			height: 100%;
		}
			div.search-bar ul li {
				display: block;
				height: 100%;
			}
				div.search-bar ul li a {
					display: inline-block;
					padding: 8px 0;
				}
				/* Search Label */
				li#games-search label {
					display: none;
				}
				/* Search Input */
				li#games-search input[type="search"] {
					background: #2576bc;
					border: 2px solid #2472b5;
					border-bottom-left-radius: 18px;
					border-top-left-radius: 18px;
					border-bottom-right-radius: 0;
					border-top-right-radius: 0;
					color: #fff;
					display: block;
					float: left;
					font-size: 20px;
					height: 36px;
					outline: none;
					overflow: hidden;
					padding: 0 0 0 10px;
					width: 100%;
					width: -webkit-calc(100% - 60px);
					width: calc(100% - 60px);
					-webkit-appearance: none;
				}
					li#games-search input::-webkit-input-placeholder{ color: #fff; }
					li#games-search input::-moz-placeholder 		{ color: #fff; opacity: 1; }
					li#games-search input:-ms-input-placeholder 	{ color: #fff; }
					li#games-search input:placeholder 				{ color: #fff; }

					li#games-search input:focus::-webkit-input-placeholder 	{ opacity: 0; }
					li#games-search input:focus::-moz-placeholder 			{ opacity: 0; }
					li#games-search input:focus:-ms-input-placeholder 		{ opacity: 0; }
					li#games-search input:focus:placeholder 				{ opacity: 0; }

				li#games-search span {
					background: #2576bc;
					border-bottom-left-radius: 0;
					border-top-left-radius: 0;
					border-bottom-right-radius: 18px;
					border-top-right-radius: 18px;
					display: block;
					height: 100%;
					position: absolute;
					right: 0;
					top: 0;
					width: 64px;
					overflow: hidden;
				}
					li#games-search input[type="submit"] {
						background: #fff;
						border: none;
						border-radius: 18px;
						color: #2576bc;
						cursor: pointer;
						display: block;
						font-family: 'icons';
						font-size: 21px;
						height: 32px;
						outline: none;
						padding: 0;
						position: absolute;
						right: 2px;
						top: 2px;
						width: 60px;
						-webkit-appearance: none;
					}
			/* Search Toggle Button */
			div.search-bar ul li.games-search-toggle a,
			nav.search-shortcuts ul li.games-search-toggle a {
				background: #fff;
				border: 1px solid #dadada;
				border-radius: 2px;
				height: 100%;
				line-height: 1;
				padding: 8px 40px 8px 8px;
				position: relative;
				text-decoration: none;
			}

				div.search-bar ul li.games-search-toggle a:after,
				nav.search-shortcuts ul li.games-search-toggle a:after {
					content: '\e600';
					display: block;
					font-family: 'icons';
					font-size: 25px;
					height: 100%;
					position: absolute;
					right: 0;
					text-align: center;
					top: 5px;
					width: 40px;
				}
				div.search-bar ul li.games-search-toggle a.open,
				nav.search-shortcuts ul li.games-search-toggle a.open {
					background: #f5f5f5;
				}

				div.search-bar ul li.games-search-toggle a.open:after,
				nav.search-shortcuts ul li.games-search-toggle a.open:after {
					content: "\e603";
				}
				div.search-bar ul li.games-search-toggle a:hover,
				nav.search-shortcuts ul li.games-search-toggle a:hover {
					background: #fff;
					border-color: #3aa4ff;

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

				nav.search-shortcuts ul li.games-release-calendar  {
					float: right;
					border-left: 0;
				}
					nav.search-shortcuts ul li.games-release-calendar a {
						padding-right: 0;
					}



				div.search-bar ul li.games-search-toggle a:hover:after,
				nav.search-shortcuts ul li.games-search-toggle a:hover:after {
					color: #3aa4ff;
				}

					nav.search-shortcuts ul li.games-search-toggle {
						border-left: none;
						margin-left: 2px;
					}

						nav.search-shortcuts ul li.games-search-toggle a {
							outline: 1px solid #DADADA;
							padding: 5px 40px 5px 15px;
							line-height: inherit;
							border: none;
						}

							nav.search-shortcuts ul li.games-search-toggle a:hover {
								outline: 1px solid #3AA4FF;
								position: relative;
							}

							nav.search-shortcuts ul li.games-search-toggle a:after {
								top: 2px;
							}

	/* --- Filters Drawer --- */
	div.search-drawer {
		/*background: #f5f5f5;*/
		background: rgba(245,245,245,0.95);
		box-shadow: 0 3px 5px rgba(0,0,0,0.1);
		display: none;
		font-family: 'LatoBold';
		font-size: 14px;
		overflow: hidden;
		position: relative;
		width: 100%;
	}
		div.search-drawer div.wrapper {
			position: relative;
				padding: 15px 0;
		}
		div.search-drawer div.wrapper:before,
		div.search-drawer div.wrapper:after {
			display: block;
			content: '';
			clear: both;
			position: relative;
			height: 1px;
		}
		div.search-drawer div.wrapper:before {
			margin-bottom: -1px;
		}
		div.search-drawer div.wrapper:after {
			margin-top: -1px;
		}
			/* Filter Options */
			div.filter-categories {
				border-top: 1px solid #dadada;
				font-size: 14px;
				/*margin: 10px 0 0;*/
			}
				div.filter-categories > div {
					padding: 30px 0 20px;
				}
					div.filter-categories > div legend {
						color: #777;
						display: block;
						font-family: 'LatoBold';
						font-size: 18px;
						padding: 0 0 20px;
						width: 100%;
					}
					div.filter-categories fieldset:nth-of-type(1) ol,
					div.filter-categories fieldset ol.border {
						border-bottom: 1px solid #dadada;
						margin-bottom: 20px;
						padding-bottom: 20px;
					}
					div.filter-categories ol li:nth-child(odd) {
						clear: both;
					}
				div.filter-categories > div:last-child ol li:last-child {
					border: none;
				}

			/* Cancel/Apply Buttons */
			div.filter-buttons {
				background: #ebebec;
				text-align: center;
			}
				div.filter-buttons ul {
					padding: 5px 0;
					text-align: center;
				}

/*	-----------------------------------
	Active Filters & Results
	----------------------------------- */
div.active-filters {
	background: #f5f5f5;
	font-family: 'LatoBold';
	font-size: 14px;
	overflow: hidden;
	width: 100%;
}
	div.active-filters ul {
		line-height: 20px;
		text-align: right;
	}
		div.active-filters li {
			display: none;
			padding: 5px 10px;
		}

		div.active-filters li.active {
			display: inline-block;
		}

		div.active-filters li.no-filters {
			cursor: pointer;
		}

			div.active-filters li.no-filters:hover {
				color: #3aa4ff;
				text-decoration: underline;
			}

		div.active-filters li.results {
			float: left;
			font-size: 18px;
			display: inline-block;
		}
		div.active-filters li.title {
			color: #2576bc;
			padding-right: 0;
			text-transform: uppercase;
			display: inline-block;
		}
			div.active-filters a.search-filter {
				color: #777;
				display: inline-block;
				font-family: 'LatoBold';
				position: relative;
			}
			div.active-filters a.search-filter:hover {
				color: #3aa4ff;
			}
				div.active-filters a.search-filter:after {
					background: #2576bc;
					border-radius: 50%;
					color: #fff;
					content: '\e61c';
					display: block;
					float: right;
					font-family: 'icons';
					font-size: 10px;
					height: 16px;
					line-height: 16px;
					margin: 2px 0 0 5px;
					position: relative;
					text-align: center;
					width: 16px;
				}
				div.active-filters a.search-filter:hover:after {
					background: #3aa4ff;
				}

/*	-----------------------------------
	Games Shortcut Links
	----------------------------------- */
	nav.search-shortcuts {
		margin: 0 auto 10px;
		width: 100%;
	}
	nav.search-shortcuts:after {
		clear: both;
		content: '';
		display: block;
	}
		nav.search-shortcuts ul {
			font-size: 16px;
			padding: 1px 0 10px;
		}
			nav.search-shortcuts li {
				border-left: 1px solid #dadada;
				display: block;
				float: left;
			}
			nav.search-shortcuts li:first-child {
				border-left: none;
				margin: 0 15px 11px 0;
				padding: 5px 0;
			}
				nav.search-shortcuts li:not(:last-child) a {
					font-family: 'LatoBold';
					text-decoration: none;
				}
					nav.search-shortcuts li:not(:last-child) a:hover {
						outline: 1px solid #3aa4ff;
						position: relative;
					}
				nav.search-shortcuts li a {
					display: block;
					padding: 5px 15px;
				}


				nav.search-shortcuts li.active a {
					color: #777;
					cursor: default;
				}
					nav.search-shortcuts li.active a:hover {
						outline: none;
					}

/*	-----------------------------------
	Carousel Overrides & Games Guide Styles
	----------------------------------- */
/* --- Games Carousels --- */

div.game-column li div.boxart div.sales-snipe {
	position: absolute;
	width: 55px;
	background-color: #f47b2b;
	color: white;
	border: 1px solid transparent;
	border-radius: 8px 8px 0 0;
	font-size: 0.8em;
	left: 8px;
	top: -17px;
	font-weight: bold;
}

div.carousel {
	margin-bottom: 0;
}

	ul.games {
		min-height: 400px;
	}

	/* Line between rows */
	ul.games li {
		padding-bottom: 30px;
		padding-top: 30px;
	}

	ul.games a,
	div.carousel.multiple a {
		color: #999;
		display: block;
		margin: 0 auto;
		max-width: 140px;
		text-decoration: none;
	}
		ul.games div.boxart,
		div.carousel.multiple div.boxart {
			display: block;
			margin: 0 auto 10px;
			max-height: 218px;
			max-width: 140px;
			padding-bottom: 156%;
			position: relative;
			text-align: center;
			width: 100%;
		}
			ul.games div.boxart div.img-container,
			div.carousel.multiple div.boxart div.img-container {
				bottom: 0;
				display: block;
				left: 0;
				margin: 0 auto;
				position: absolute;
				right: 0;
			}
				ul.games div.boxart div.img-container div.sales-snipe,
				div.carousel.multiple div.boxart div.img-container div.sales-snipe {
					width: 55px;
					background-color: #f47b2b;
					color: white;
					border: 1px solid transparent;
					border-radius: 8px 8px 0 0;
					font-size: 0.8em;
					margin-left: 8px;
					font-weight: bold;
				}
				ul.games div.boxart div.img-container img,
				div.carousel.multiple div.boxart div.img-container img {
					display: block;
					position: relative;
				}
		ul.games .btn,
		div.carousel.multiple .btn {
			margin-bottom: 20px;
		}
		ul.games h3,
		div.carousel.multiple .b3 {
			margin: 0;
			word-wrap: break-word;
		}
		ul.games p,
		div.carousel.multiple p {
			display: inline-block;
			margin-top: 5px;
			padding-bottom: 10px;
		}
		ul.games p.b3,
		div.carousel.multiple p.b3 {
			border-bottom: 3px solid #dadada;
			color: #777;
		}
		ul.games [data-system*="Wii"],
		div.carousel.multiple [data-system*="Wii"] {
			border-bottom: 3px solid #0096c8;
		}
		ul.games [data-system*="Switch"],
		div.carousel.multiple [data-system*="Switch"] {
			border-bottom: 3px solid #e60012;
		}
		ul.games [data-system*="DS"],
		div.carousel.multiple [data-system*="DS"] {
			border-bottom: 3px solid #ce181e;
		}

	/* Hover States */
	ul.games a:hover p.WiiU,
	ul.games a:hover [data-system*="Wii"],
	div.carousel.multiple a:hover p.WiiU,
	div.carousel.multiple a:hover [data-system*="WiiU"] {
		color: #0096c8;
	}
	ul.games a:hover p.threeDS,
	ul.games a:hover [data-system*="DS"],
	div.carousel.multiple a:hover p.threeDS,
	div.carousel.multiple a:hover [data-system*="DS"] {
		color: #ce181e;
	}
	ul.games a:hover p.threeDS,
	ul.games a:hover [data-system*="DS"],
	div.carousel.multiple a:hover p.threeDS,
	div.carousel.multiple a:hover [data-system*="DS"] {
		color: #ce181e;
	}
	ul.games a:hover p.b3,
	div.carousel.multiple a:hover p.b3 {
		color: #777;
	}
	ul.games a:hover h3.b3,
	div.carousel.multiple a:hover h3.b3 {
		color: #3aa4ff;
	}

	.no-results {
		text-align: center;
		width: 100%;
	}

/* --- Characters Carousel --- */
div#characters.carousel {}

	div#characters.carousel div.boxart {
		max-height: 240px;
		padding-bottom: 172%;
	}
	div#characters.carousel h3 {
		text-align: center;
	}

	/* Next/Prev Arrows */
	div#characters.carousel div.nav div.arrow a {
		top: 30%;
		top: -webkit-calc(40% - 30px);
		top: calc(40% - 30px);
	}

/*	-----------------------------------
	Games Landing Page
	----------------------------------- */
body.games-landing div.wrapper section {
	border-bottom: 1px solid #dadada;
	padding: 30px 0 0;
}
body.games-landing div.wrapper > section:last-child {
	border-bottom: none;
}
body.games-landing nav.search-shortcuts {
	margin-top: 10px;
}
/*	-----------------------------------
	Game Detail Page
	----------------------------------- */
/* --- Hero Carousel --- */
div.carousel.sibling-hero ul.panels li {
	text-align: center;
	margin-bottom: 10px;
	/*background-color: #fff;*/
	height: 100%;
}
	div.carousel.sibling-hero ul.panels .panel-align img {
		display: inline-block;
	}
	div.price-container {
		padding: 0;
		margin: 0 0 20px;
		text-align: center;
	}


/* handle aligning different size images */
.panel-img {
	background-position: top center;
	background-repeat: no-repeat;

	-webkit-background-size: contain;
	-moz-background-size: contain;
	background-size: contain;
	position: absolute;
	height: 97.5%;
	width: 100%;
}



/* --- Thumbnail Carousel --- */
div.carousel.sibling-thumbs ul.panels li {
	margin-bottom: 10px;
}
	div.carousel.sibling-thumbs a {
		max-width: 100%;
		width: 100%;
		padding: 3px;
		position: relative;
		display: inline-block;
	}

	div.carousel.sibling-thumbs ul.panels li img {
		display: block;
		width: 100%;
	}

	div.carousel.sibling-thumbs li.video a:before {
		color: rgba(255,255,255,0.5);
		content: '\00a0\e61d\00a0'; /* add nbsp before and after to fix android bug */
		display: block;
		font-family: 'icons';
		font-size: 40px;
		height: 50px;
		left: 0;
		line-height: 50px;
		position: absolute;
		text-align: center;
		top: 35%;
		top: -webkit-calc(50% - 25px);
		top: calc(50% - 25px);
		width: 100%;
	}
	div.carousel.sibling-thumbs li.is-active a {
		border: none;
		padding: 3px;
	}
	div.carousel.sibling-thumbs li.is-active-thumb a {
		border: 3px solid #2576bc;
		padding: 0;
		display: inline-block;

	}
	div.carousel.sibling-thumbs li a:hover {
		border: 3px solid #3aa4ff;
		padding: 0;
	}
	div.carousel.sibling-thumbs li.video a:hover:before {
		color: rgba(255,255,255,0.8);
	}

/* remove hover styles for tablet & mobile */
@media screen and (max-width: 768px) {
	div.carousel.sibling-thumbs li a:hover,
	div.carousel.sibling-thumbs li.is-active a {
		border: none;
		padding: 3px;
	}
	div.carousel.sibling-thumbs li.is-active-thumb a {
		border: 3px solid #2576bc;
		padding: 0;
		display: inline-block;
	}
}

	/* Next/Prev Arrows */
	div.carousel.sibling-thumbs div.nav div.arrow a {
		top: 45%;
		top: -webkit-calc(45% - 30px);
		top: calc(45% - 30px);
	}


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

	DESKTOP VIEW

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


/*	-----------------------------------
	Collapsible Games Search Drawer
	----------------------------------- */
	body.pin-search form#search-games-header {
		top: 36px;
	}
		/* Additional Links */
		div.search-bar ul li:last-child {
			text-align: right;
		}
			div.search-bar ul li:last-child a {
				margin-left: 20px;
			}

/*	-----------------------------------
	Games Guide Page
	----------------------------------- */
	ul.games li:nth-child(6n+1):before {
		background: #dadada;
		clear: both;
		content: '';
		display: block;
		height: 1px;
		position: absolute;
		top: 0;
		width: 700%;
	}
	ul.games li:first-child:before {
		display: none;
	}
}

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

	ADDITIONAL DESKTOP VIEW

	================================================ */
@media screen and (min-width: 769px) and (max-width: 890px) {
	/* Additional Links */
	div.search-bar ul li:last-child {
		font-size: 16px;
	}
		div.search-bar ul li:last-child a {
			margin-left: 15px;
		}

}

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

	TABLET VIEW

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

	section .section-title + a {
		top: 5px;
	}

/*	-----------------------------------
	Collapsible Games Search Drawer
	----------------------------------- */
	body.pin-search form#search-games-header {
		top: 50px;
	}

		/* --- Search Bar --- */
		div.search-bar {
			padding-bottom: 0;
		}

	/* Additional Links */
	div.search-bar ul li:last-child {
		text-align: center;
	}
		div.search-bar ul li:last-child a {
			margin-left: 40px;
		}
	/* --- Duplicate Search Bar Links --- */
	div.search-bar-links {
		font-size: 18px;
		padding: 0 0 10px;
	}

		div.search-bar-links ul li:first-child {
			text-align: right;
		}


/*	-----------------------------------
	Games Guide Page
	----------------------------------- */
	ul.games li:nth-child(4n+1):before {
		background: #dadada;
		clear: both;
		content: '';
		display: block;
		height: 1px;
		position: absolute;
		top: 0;
		width: 440%;
	}
	ul.games li:first-child:before {
		display: none;
	}

}


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

	MOBILE VIEW

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

	section .section-title + a {
		float: none;
		width: 100%;
		top: -10px;
	}

	section .section-title:after {
		display: none;
	}

	/* --- Hero Carousel --- */
	div.carousel.hero {
		margin-bottom: 0;
	}

/*	-----------------------------------
	Collapsible Games Search Drawer
	----------------------------------- */
	body.pin-search form#search-games-header {
		top: 0;
	}

		/* --- Search Bar --- */
		div.search-bar {
			font-size: 16px;
			padding-bottom: 0;
		}
			/* Search Input */
			li#games-search input[type="search"] {
				font-size: 16px;
				padding: 0 0 0 5px;
			}
			/* Search Toggle Button */
			div.search-bar ul li.games-search-toggle a {
				padding-bottom: 5px;
				padding-top: 5px;
			}
				div.search-bar ul li.games-search-toggle a:after {
					top: 2px;
				}

			/* Additional Links */
			div.search-bar ul li:last-child {
				text-align: center;
			}
				div.search-bar ul li:last-child a {
					margin-left: 20px;
				}

		/* --- Duplicate Search Bar Links --- */
		div.search-bar-links {
			font-size: 16px;
			padding: 0 0 10px;
		}
			div.search-bar-links ul li:first-child {
				text-align: right;
			}
				div.search-bar-links ul li a {
					margin: 0 10px;
				}

	/* --- Filters Drawer --- */
	div.search-drawer {
		background: #f5f5f5;
	}
		/* Filter Options */
		div.filter-categories {
			margin-bottom: 40px;
		}
			div.filter-categories > div {
				padding: 0;
			}
			div.filter-categories > div legend {
				border-bottom: 1px solid #dadada;
				color: #484848;
				font-size: 22px;
				margin: 0;
				padding: 20px 0;
				position: relative;
			}
				div.filter-categories > div legend:after {
					color: #2576bc;
					content: '\e600';
					font-family: 'icons';
					font-size: 24px;
					height: 20px;
					line-height: 18px;
					position: absolute;
					right: 10px;
					text-align: center;
					top: 20px;
					width: 20px;
				}
				div.filter-categories > div legend.open {
					border-bottom: none;
				}
				div.filter-categories > div legend.open:after {
					content: '\e603';
					line-height: 16px;
				}


				div.filter-categories > div ol li {
					border-bottom: 1px solid #dadada;
					padding: 15px 0;
				}
					div.filter-categories > div ol li label {
						font-size: 18px;
						margin-bottom: 0;
					}

				div.filter-categories > div legend + ol {
					height: auto;
					position: absolute;
					/*opacity: 0;*/
					display:none;
					overflow: hidden;
				}
				div.filter-categories > div legend.open + ol {
					height: auto;
					/*overflow: visible;*/
					overflow: hidden;
				}
				div.filter-categories fieldset:nth-of-type(1) ol {
					border-bottom: none;
					margin-bottom: 0;
					padding-bottom: 0;
				}

	/* --- Active Filters & Results --- */
	div.active-filters {
		font-size: 16px;
		padding: 10px 0;
		width: 100%;
	}
		div.active-filters ul {
			text-align: left;
		}
			div.active-filters li.results {
				display: block;
				float: none;
				font-size: 16px;
				margin-bottom: 10px;
			}
			div.active-filters li.title {
				float: left;
			}

/*	-----------------------------------
	Games Shortcut Links
	----------------------------------- */
	nav.search-shortcuts {
		display: none;
	}



/*	-----------------------------------
	Games Guide Page
	----------------------------------- */
	ul.games li:nth-child(odd):before {
		background: #dadada;
		clear: both;
		content: '';
		display: block;
		height: 1px;
		position: absolute;
		top: 0;
		width: 200%;
	}
	ul.games li:first-child:before {
		display: none;
	}

/*	-----------------------------------
	Carousel Overrides & Games Guide Styles
	----------------------------------- */
	ul.games .btn,
	div.carousel.multiple .btn {
		display: none;
	}
}


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

	3DS Browser Specific Styles

	================================================ */
body.nin3DS div.search-bar-links ul li:first-child {
	text-align: center;
}
body.nin3DS div.search-bar-links ul li a {
	margin: 0;
}
body.nin3DS li#games-search input[type="search"] {
	border-radius: 18px;
	width: 100%;
}
body.nin3DS li#games-search span {
	display: none;
}
body.nin3DS div.search-bar ul li.games-search-toggle a {
	padding: 5px;
}
	body.nin3DS div.search-bar ul li.games-search-toggle a:after,
	body.nin3DS div.filter-categories > div legend:after {
		background: url('/images/global/no-icon-font-arrows.png') 0 0 no-repeat;
		content: '';
		height: 17px;
		overflow: hidden;
		position: absolute;
		right: 0;
		top: 5px;
		width: 25px;
	}
	body.nin3DS div.filter-categories > div legend:after {
		top: 20px;
	}
	body.nin3DS div.search-bar ul li.games-search-toggle a.open:after,
	body.nin3DS div.filter-categories > div legend.open:after {
		background-position: 0 -20px;
		content: '';
	}

/* French Overrides */

.non-sale-price {
	font-size: 20px;
	color: #9f9f9f;
	text-decoration: line-through;
}

.price_display {
	color: #9f9f9f;
	font-size: 30px;
}

	.sale.price_display {
		color: #f37b2b;
	}

#btn-eshop-download img {
	margin-top: 20px;
}

.ca_price {
	display: none;
}

.us_price {
	display: list-item;
}

body:lang(fr-CA) #search-games-header,
body:lang(fr-CA) nav.subnav.search-shortcuts,
body:lang(fr-CA) div.search-bar-links,
body:lang(fr-CA) #favorite-characters {
	display: none;
}

body:lang(fr-CA) .us_price,
body:lang(en-CA) .us_price {
	display: none;
}

body:lang(fr-CA) .ca_price,
body:lang(en-CA) .ca_price {
	display: list-item;
}

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

	.btn-preview.qv-en {
		display: inline-block;
	}

	.btn-preview.qv-fr {
		display: none;
	}
}

/* Global Styles Overrides */

div.carousel.multiple .b4,
.games .btn-game-item .b4 {
	font-size: 12px;
}

div.carousel.multiple .b3,
.games .btn-game-item .b3 {
	font-size: 16px;
}

ul.games .btn,
div.carousel.multiple .btn,
.games .btn-game-item .btn {
	margin-bottom: 8px;
}

.btn-preview {
	font-size: 14px;
}

ul.games p,
div.carousel.multiple p,
.games .btn-game-item p {
	padding-bottom: 2px;
}

.filter-selector .btn-filter {
	padding-bottom: 0 ! important;
}

a.eshop-tooltip-link {
  position: relative;
  display: inline;
  padding-bottom: 30px;
}
a.eshop-tooltip-link span.tooltip-text {
	position: absolute;
	width: 100%;
	color: #525252;
	background: #FFF;
	border: 2px solid #F37B2B;
	text-align: left;
	visibility: hidden;
	padding: .5em;
	opacity: 0;
	-webkit-transition: opacity 150ms ease-in-out;
	-moz-transition: opacity 150ms ease-in-out;
	-ms-transition: opacity 150ms ease-in-out;
	-o-transition: opacity 150ms ease-in-out;
	transition: opacity 150ms ease-in-out;
}
a.eshop-tooltip-link span.tooltip-text:before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -12px;
  width: 0; height: 0;
  border-bottom: 12px solid #F37B2B;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
}
a.eshop-tooltip-link span.tooltip-text:after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -8px;
  width: 0; height: 0;
  border-bottom: 8px solid #FFFFFF;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
html.no-touch a:hover.eshop-tooltip-link span.tooltip-text,
html.no-touch a.eshop-tooltip-link span.tooltip-text:hover,
html.touch a.eshop-tooltip-link span.tooltip-text.show-tooltip {
  visibility: visible;
  opacity: 1;
  top: 30px;
  left: 0;
  z-index: 999;
}
a.eshop-tooltip-link span.tooltip-text span.orange-link {
	color: #F37B2B;
	text-decoration: underline;
	white-space: nowrap;
}



/* Modal: New Nintendo 3DS Exclusive */
#new-3ds-modal-overlay {
	display: none;
}

#new-3ds-modal {
	color: #000;
	width: 880px;
	left: 50%;
	margin-left: -440px;
	top: 200px;
	opacity: 1;
	display: none;
}


	#new-3ds-modal h2 {
		margin: .3em 0 .7em;
	}


	#new-3ds-modal .img-hardware {
		padding: 0 15px;
	}

	#new-3ds-modal .btn {
		width: initial;
		margin-left: 0;
		padding: 10px 1em;
	}

		#new-3ds-modal div.preview-content:before {
			content: "";
		}

		@media screen and (max-width: 880px) {
			#new-3ds-modal {
				width: 100%;
				margin-left: 0;
				left: 0;
			}
		}



/* ENHANCED GDP */

.enhanced-promo-container {
	background-color: #000;
	text-align: center;
	position: relative;
	margin-bottom: -4.5%;

	background-size: cover;
}

body.enhanced-promo .body-container {
	position: relative;
	padding-top: 30px;

    background: #fff;
    background: -moz-linear-gradient(top, rgba(255,255,255,.8) 0%, rgba(255,255,255,1) 60px, #fff 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,.8) 0%, rgba(255,255,255,1) 60px, #fff 100%);
    background: -o-linear-gradient(top, rgba(255,255,255,.8) 0%, rgba(255,255,255,1) 60px, #fff 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255,.8) 0%, rgba(255,255,255,1) 60px, #fff 100%);
    background: linear-gradient(top, rgba(255,255,255,.8) 0%, rgba(255,255,255,1) 60px, #fff 100%);
}

body.enhanced-promo .txt-header {
	display: none;
}


body.enhanced-promo .enhanced-overlay {
	position: absolute;
	bottom: 14%;
	width: 100%;
	text-align: left;
}

	.enhanced-overlay h1 {
		color: #fff;
		font-weight: bold;
		text-shadow: 2px 3px 2px rgba( 0, 0, 0, .6);
	}


.btn-audio {
	background: url(/images/page/games/detail/btn-music.png) no-repeat top left;
	display: none;
	width: 74px;
	height: 74px;
	position: absolute;
    top: 10px;
    left: 10px;

	/*-webkit-transition: all 320ms cubic-bezier(0.175, 0.885, 0.320, 1.275); /* easeOutBack */*/
    /*transition: all 320ms cubic-bezier(0.175, 0.885, 0.320, 1.275); /* easeOutBack */*/
}

	.btn-audio.show {
		display: block;
	}

	.btn-audio:hover {
		cursor: pointer;
		background-position: top right;
	}

	.btn-audio.is-off {
		background-position: bottom left;
	}

		.btn-audio.is-off:hover {
			background-position: bottom right;
		}


.wrapper.relative {
	position: relative;
}

/* TABLET AND BELOW */
@media screen and (max-width: 768px) {
	.hide-enhanced-mobile-placeholder {
		display: none;
	}

	body.enhanced-promo .enhanced-overlay {
		bottom: 0;
	}

	.enhanced-promo-container {
		margin-bottom: 0;
	}
}

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

	.hide-enhanced-desktop-placeholder {
		display: none;
	}

	.enhanced-promo-container {
		background-size: contain;
	}
}

/* DESKTOP XXL */
@media screen and (min-width: 1433px) and (min-height: 750px) {
	.enhanced-promo-container {
		    padding-bottom: 9%;
  			background-size: cover;
	}
}

.price {
	font-size: 16px;
	color: #777;
	margin: 0;
	margin-top: 0 !important;
}

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

.strike-through {
	text-decoration: line-through;
}

.amiibo-compatibility-module {
	border: solid 1px #ABB66D;
	    padding: 1.5em 1.2em;
	    border-radius: 10px;
	    margin: 2em 0;
}

	.amiibo-compatibility-module .logo-amiibo {
		border-right: solid 1px #bdbdbd;
		float: left;
		margin-right: 1em;
	}

	.amiibo-compatibility-module .b7 {
		margin-bottom: .2em;
	}

		@media screen and (max-width: 570px) {
			.amiibo-compatibility-module .b7,
			.amiibo-compatibility-module .b5 {
				font-size: 15px;
			}
		}

	.amiibo-compatibility-module .disclaimer {
	    font-size: 12px;
	    padding: 0 15px;
	    clear: both;
	    margin-top: 2em;
	}



.wrapper {
	min-width: 0;
	width: 96%;
}

article {
	color: #000;
	font-size: 16px;
}

article p,
article li,
article h1,
article h2,
article h3 {
	color: inherit;
}

article section h1 {
	font-size: 1.875em;
	margin-bottom: 2rem;
}

article p {
	font-family: 'LatoLight', sans-serif;
	font-size: 1.375rem;
	line-height: 1.3;
}

article section {
	margin-top: 3em;
	margin-bottom: 3em;
	padding-bottom: 3em;
	border-bottom: 1px solid #e2e2e2;
	position: relative;
}

article section.no-border,
article section:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}

article .price.loaded::before {
	opacity: 0;
	pointer-events: none;
}

article .price .sale-price {
	display: none;
}

article .price .msrp,
article .price.discounted .sale-price {
	display: inline-block;
}

article .price .msrp,
article .price .sale-price {
	opacity: 0;
	pointer-events: none;
	transition: opacity 200ms ease-in-out 200ms;
	vertical-align: middle;
}

article .price.loaded .msrp,
article .price.loaded .sale-price {
	opacity: 1;
	pointer-events: auto;
}

article .price .sale-price {
	margin-right: 0.25em;
}

article .price.discounted .msrp {
	text-decoration: line-through;
	font-size: 0.875em;
	color: #ccc;
	font-family: 'LatoLight';
}

.btn-orange-filled {
	border: none;
	padding: 0.375em 0.75em;
	width: auto;
	font-size: 1.375em;
	margin: 0;
	white-space: nowrap;
}

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

article .modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 2000;
	display: none;
	cursor: pointer;
}

article .modal-overlay.opened {
	display: block;
}

article .modal-overlay .modal {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	max-width: 880px;
	padding: 2em 5% 14em;
	position: relative;
	box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	cursor: auto;
	background: url('/images/global/pattern-modal/bg-character-pattern.svg') right calc(100% - 2em) no-repeat, url('/images/global/pattern-modal/bg.png') repeat #fff;
}

article .modal-overlay .modal .b3 {
	font-family: 'LatoBold', sans-serif;
}

article .modal-overlay .modal p:not(.b3) {
	font-size: 1em;
	font-family: 'LatoRegular', sans-serif;
}

article .modal-overlay .modal .btn-close {
	position: absolute;
	top: 0;
	right: 0;
	padding: 1em;
	background: none;
	border: none;
	outline: none;
	cursor: pointer;
}

article .modal-overlay .modal .btn {
	width: auto;
	padding: 0.5em 1em;
	margin: 0;
}

article .esrb-rating {
	flex: none;
	display: inline-flex;
	align-items: center;
}

.deeplink-anchor {
	pointer-events: none;
}

@media (min-width: 769px) {
	body:not(.no-anchor-offset) .deeplink-anchor {
		transform: translateY(calc(-66px - 70px));
	}
}

@media (min-width: 571px) and (max-width: 768px) {
	body:not(.no-anchor-offset) .deeplink-anchor {
		transform: translateY(calc(-66px - 85px));
	}
}

@media (max-width: 570px) {
	body:not(.no-anchor-offset) .deeplink-anchor {
		transform: translateY(-85px);
	}
}

:-webkit-full-screen-ancestor:not(iframe) {
	animation-fill-mode: none !important;
	animation-name: none !important;
	opacity: 1 !important;
	will-change: initial !important;
}

body:not(.unsupported-browser) .browser-notice {
	display: none;
}

#hero {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #000;
	background-position: center top;
	margin: 0;
	max-height: 85vh;
	/* max-height: 87vh; */
}

#hero .background-video {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 0;
	pointer-events: none;
}

#hero .details {
	display: flex;
	position: absolute;
	bottom: 0;
	width: 1020px;
	left: calc((100% - 1020px) / 2);
	padding: 20px;
	border-radius: 10px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.4);
	color: #fff;
	font-family: 'LatoBold', sans-serif;
	align-items: flex-start;
}

@media (max-width: 1020px) {
	#hero .details {
		width: 100%;
		border-radius: 0;
		padding: 2%;
		left: 0;
	}
}

#hero .release-tab {
	position: absolute;
	bottom: 100%;
	left: 20px;
	font-size: 1.25em;
	padding: 0.25em 0.5em;
	opacity: 0;
	pointer-events: none;
	transition: opacity 200ms ease-in-out;
	background-color: #373737;
}

.platform-switch #hero .release-tab {
	background-color: #e60012;
}

.platform-3ds #hero .release-tab {
	background-color: #ce181e;
}

.platform-wii-u #hero .release-tab {
	background-color: #0096c8;
}

#hero .release-tab.now.loaded,
#hero .release-tab.soon {
	opacity: 1;
	pointer-events: auto;
}

#hero .release-tab.now .coming-soon,
#hero .release-tab.soon .available-now {
	display: none;
}

#hero .boxart {
	flex: none;
	margin-right: 2%;
	margin-bottom: -4em;
	background-color: #fff;
	border-radius: 0.375em;
	padding: 0.375em;
}

#hero .boxart img {
	max-width: calc(170em / 16);
	display: block;
}

.platform-switch #hero .boxart img,
.platform-wii-u #hero .boxart img {
	max-width: calc(158em / 16);
}

#hero .title {
	flex: 1;
}

#hero h1 {
	color: inherit;
	font-family: 'LatoBlack', sans-serif;
	font-size: 2em;
	margin-bottom: 0;
}

#hero .platform {
	font-size: 1.25em;
	margin: 0.5em 0;
	display: inline-block;
	border-bottom: 3px solid #fff;
}

.platform-switch #hero .platform {
	border-bottom-color: #e60012;
}

.platform-3ds #hero .platform {
	border-bottom-color: #ce181e;
}

.platform-wii-u #hero .platform {
	border-bottom-color: #0096c8;
}

#hero .esrb-rating img {
	width: 3.5em;
	height: auto;
}

#purchase-options {
	position: relative;
}

#hero #purchase-options {
	flex: none;
	margin-left: 2%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

#purchase-options .text-link {
	color: inherit;
	font-family: inherit;
	white-space: nowrap;
	display: inline-block;
	margin-top: 1rem;
	text-decoration: none;
}

#purchase-options .text-link:hover {
	box-shadow: 0 1px 0 0;
}

#purchase-options .text-link:first-child {
	margin-top: 0;
}

#purchase-options .text-link::after {
	content: '\00A0\e602';
	font-family: 'icons';
	font-size: 0.8em;
}

#hero .price {
	font-size: 1.5em;
	font-family: inherit;
	color: inherit;
	position: relative;
}

#hero .price::before,
#hero .overall-rating::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	background: url('/images/page/games/loading-ellipsis.svg') center no-repeat;
	background-size: contain;
	transition: opacity 200ms ease-in-out;
}

#hero .overall-rating::before {
	background-position: left center;
}

#purchase-options .buy-digital {
	margin-top: 0.875rem;
	position: relative;
	padding-left: 10rem;
}

html:lang(fr-ca) #purchase-options .buy-digital {
	padding-left: 12.5rem;
}

html[lang] #purchase-options .buy-digital.owned,
html[lang] #purchase-options .buy-digital.free {
	padding-left: 0;
}

#purchase-options .buy-digital .btn {
	opacity: 0;
	pointer-events: none;
	transition: opacity 200ms ease-in-out 200ms;
	padding: 0.5em 0.75em;
}

#purchase-options .buy-digital .btn.loaded {
	opacity: 1;
	pointer-events: auto;
}

#purchase-options .buy-digital .btn.loaded.deactivated {
	opacity: .8;
	pointer-events: none;
	color: #dadada;
	background-color: #888;
}

#purchase-options .buy-digital.deactivated .my-nintendo-points {
	display: none;
}

#purchase-options .buy-digital.owned .btn {
	background-color: #dadada;
	color: #888;
	cursor: default;
	pointer-events: none;
}

#hero + #purchase-options .buy-digital {
	display: flex;
	align-items: center;
	padding-left: 0;
}

.purchase-flow-disabled {
	opacity: 1;
	pointer-events: none;
	transition: opacity 200ms ease-in-out 200ms;
	border: 1px solid #fff;
	z-index: 1;
	color: #fff;
}

	.purchase-flow-disabled .tag::before {
		content: '';
		position: absolute;
		top: calc(50% - 0.375rem);
		right: -0.375rem;
		width: 0.75rem;
		height: 0.75rem;
		border: 1px solid #fff;
		border-width: 1px 1px 0 0;
		transform: rotateZ(45deg);
		background: #000;
	}

	.purchase-flow-disabled .tag {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		padding: 0.375em 0.625em 0.375em 0.25em;
		background: #000;
	}

	.my-nintendo-points .disabled-message {
		font-size: 0.75rem;
		line-height: 1.3;
		margin-right: 0.5rem;
	}

.my-nintendo-points {
	opacity: 0;
	pointer-events: none;
	transition: opacity 200ms ease-in-out 200ms;
	border: 1px solid #fff;
	z-index: 1;
	color: #fff;
}

.my-nintendo-points.modal {
	transition: 400ms ease-in-out;
	transform: translateY(100%);
}

.my-nintendo-points.modal.opened {
	opacity: 1;
	transform: translateX(-50%);
	pointer-events: auto;
}

#hero + #purchase-options .my-nintendo-points {
	background: #333;
	border-color: #000;
}

.my-nintendo-points.modal {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 100%);
	width: 96%;
	max-width: 400px;
}

#hero + #purchase-options .my-nintendo-points::before {
	background: #333;
	border-color: #000;
}

#hero + #purchase-options .my-nintendo-points:not(.modal) .about-my-nintendo {
	display: none;
}

.my-nintendo-points .about-my-nintendo {
	background: #e60012;
	position: relative;
	font-size: 1rem;
	font-family: 'LatoRegular', sans-serif;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0.75em;
}

.my-nintendo-points.modal .about-my-nintendo {
	padding: 2em 1em 1em;
}

.my-nintendo-points:not(.modal) .about-my-nintendo {
	width: 0;
	height: 0;
	transition: 300ms ease-in-out;
}

.my-nintendo-points .about-my-nintendo img {
	width: 6em;
	margin-right: 1em;
	flex: none;
}

.my-nintendo-points .about-my-nintendo .btn-close {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0.5em;
	color: inherit;
}

.my-nintendo-points .tag {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0.375em 0.625em 0.375em 0.25em;
	background: #000;
}

.my-nintendo-points:not(.modal) .tag::before {
	content: '';
	position: absolute;
	top: calc(50% - 0.375rem);
	right: -0.375rem;
	width: 0.75rem;
	height: 0.75rem;
	border: 1px solid #fff;
	border-width: 1px 1px 0 0;
	transform: rotateZ(45deg);
	background: #000;
}

.my-nintendo-points .tag img {
	flex: none;
}

.my-nintendo-points .tag .learn-more {
	color: inherit;
	text-align: right;
	flex: 1;
}

.my-nintendo-points:not(.modal) .tag .learn-more {
	opacity: 0;
	pointer-events: none;
	flex: 0;
	transition: 300ms ease-in-out;
	max-width: 0;
	max-height: 0;
	white-space: nowrap;
	overflow: hidden;
}

@media (min-width: 769px) {
	.my-nintendo-points {
		position: absolute;
		right: 9.25em;
		bottom: 0;
	}
	.purchase-flow-disabled {
		position: absolute;
		right: 12em;
		bottom: 0;
		width: 10rem;
		font-size: .8rem;
	}
	.buy-digital.preorder .my-nintendo-points {
		right: 11.1em;
	}
	html:lang(fr-ca) .my-nintendo-points {
		right: 16.5em;
	}

	.my-nintendo-points .about-my-nintendo .btn-close {
		display: none;
	}
	
	.my-nintendo-points.modal {
		display: none;
	}

	.my-nintendo-points:hover .about-my-nintendo {
		width: 25em;
		height: 8em;
		border-bottom: solid 1px #fff;
	}

	.my-nintendo-points:hover .tag .learn-more {
		flex: 1;
		opacity: 1;
		pointer-events: auto;
		max-height: 1.25em;
		max-width: 19em;
	}
}

@media (max-width: 768px) {
	.my-nintendo-points:not(.modal) {
		margin-right: 0.5em;
	}
	.my-nintendo-points:not(.modal) .tag .learn-more {
		display: none;
	}
	.purchase-flow-disabled {
		width: 12rem;
		font-size: 1rem;
		margin-right: 1rem;
	}
}

.my-nintendo-points:not(.modal).loaded {
	opacity: 1;
	pointer-events: auto;
}

.my-nintendo-points .points-earned {
	font-size: 0.75rem;
	line-height: 1.3;
	margin-right: 0.5rem;
}

.my-nintendo-points .points {
	font-family: 'LatoBlack';
	font-size: 1rem;
}

#purchase-options .mobile-store-btn {
	margin-top: 1rem;
}

#hero + #purchase-options {
	display: flex;
	flex-direction: column;
	margin-top: 1rem;
	align-items: center;
	font-size: 1.25em;
}

#hero + #purchase-options > br {
	display: none;
}

#purchase-options + #nav-area {
	margin-top: 2em;
}

#retailers-modal {
	position: absolute;
	left: 50%;
	background: #fff;
	width: 100%;
	max-width: 880px;
	height: 560px;
	transform: translateX(-50%);
	z-index: 3;
	box-shadow: 0 3px 5px rgba(0,0,0,0.2);
	border-bottom: 6px solid #dadada;
	display: flex;
	flex-direction: column;
}

#retailers-modal .logo-bar {
	height: 35px;
	background: #dadada;
	display: flex;
	justify-content: flex-end;
	margin-bottom: 1em;
	flex: none;
}

#retailers-modal .btn-close {
	margin: 4px;
	line-height: 1;
	border-radius: 2px;
	border: none;
	outline: none;
	width: 27px;
	height: 27px;
	background: #fff;
	font-size: 14px;
	cursor: pointer;
	color: #2576bc;
}

#retailers-modal .iframe-embed {
	flex: 1;
}

#retailers-modal .iframe-embed iframe {
	width: 100%;
	height: 100%;
}

#retailers-modal .btn-close::before {
	content: '\e61b';
	font-family: 'icons';
}

#game-detail.retailer-modal-overlay::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.6);
	z-index: 2;
}

@media (max-width: 900px) {
	#hero .details {
		font-size: 0.875em;
	}
}

@media (max-width: 768px) {
	#hero .esrb-rating {
		display: none;
	}

	#hero .price {
		font-size: 1.5rem;
		display: inline-block;
		margin-top: 0.5em !important;
	}

	#hero .platform {
		margin-bottom: 0.5em;
	}
}

@media (max-width: 570px) {
	#hero .boxart {
		font-size: 0.875em;
		margin-bottom: 0; 
	}
	html:lang(fr-ca) #hero + #purchase-options {
		font-size: 1em;
	}
}

@media (min-width: 571px) {
	#hero + #purchase-options {
		margin-top: 2rem;
	}
}

@media (max-width: 480px) {
	#hero .details {
		font-size: 0.75em;
	}
	#hero + #purchase-options {
		font-size: 1em;
	}
	html:lang(fr-ca) #hero + #purchase-options {
		font-size: 3vw;
	}
	#retailers-modal {
		height: 620px;
	}
}

@media (max-width: 400px) {
	html:lang(fr-ca) #hero + #purchase-options {
		font-size: 0.7em;
	}
}

#demo-modal .demo-sign-in,
#demo-modal .demo-link-nnid,
#demo-modal .demo-downloaded {
	display: none;
}

#demo-modal[data-view='sign-in'] .demo-sign-in {
	display: block;
}

#demo-modal[data-view='link-nnid'] .demo-link-nnid {
	display: block;
}

#demo-modal[data-view='downloaded'] .demo-downloaded {
	display: flex;
}

#demo-modal[data-view='downloaded'] {
	background: url('/images/global/pattern-modal/bg.png') repeat #fff;
	padding: 2em 5%;
}

#demo-modal .demo-downloaded {
	align-items: center;
}

#demo-modal .demo-downloaded .copy {
	flex: 1;
	margin-right: 1em;
}

#demo-modal .demo-downloaded img {
	flex: none;
}

#hero .overall-rating {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	cursor: pointer;
	color: inherit;
	text-decoration: none;
}

#hero .overall-rating > * {
	transition: opacity 200ms ease-in-out 200ms;
}

#hero .overall-rating:not(.loaded) > * {
	opacity: 0;
	pointer-events: none;
}

#hero .overall-rating.loaded::before {
	opacity: 0;
	pointer-events: none;
}

#hero .overall-rating ~ .esrb-rating {
	margin-top: 0.5em;
}

#hero .stars {
	display: flex;
	align-items: center;
	margin-right: 0.75em;
}

#hero .stars .star {
	flex: none;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

#hero .stars .star:not(:last-child) {
	margin-right: 0.375em;
}

#hero .overall-rating .stars .star {
	width: 2em;
	height: 1.875em;
}

#hero .stars .star.empty {
	background-image: url('/images/page/games/reviews/star-empty.svg');
}

#hero .stars .star.half {
	background-image: url('/images/page/games/reviews/star-half.svg');
}

#hero .stars .star.full {
	background-image: url('/images/page/games/reviews/star-full.svg');
}

#hero .overall-rating .review-count {
	margin: 0.5em 0;
}

#nav-area {
	margin-top: 4em;
}

#nav-area:not(.pinned) nav .wrapper {
	max-width: 100%;
	width: 100%;
}

@media (min-width: 571px) {
	#nav-area.pinned nav {
		border-radius: 0;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 3;
		width: 100%;
		font-size: 1em;
		transition: transform 0.8s cubic-bezier(0.6, 0, 0.4, 1);
		will-change: transform;
	}

	#nav-area.pinned {
		max-width: 100%;
		width: 100%;
		min-width: 0;
	}
}

body.not-at-top.scrolling-up #nav-area.pinned nav {
	transform: translateY(72px);
}

#nav-area nav {
	padding: 0.5em 0;
	background-color: rgba(0, 150, 203, 0.9);
	border-radius: 4px;
	color: #fff;
	font-size: 1.125em;
	font-family: 'LatoBold', sans-serif;
}

#nav-area nav .wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

#nav-area nav .wrapper > a {
	padding: 0.25em 2em;
	margin: 0.5em 0;
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	flex: none;
}

#nav-area:not(.pinned) nav .buy-digital,
#nav-area.pinned nav .buy-digital:not(.loaded) {
	display: none;
}

#nav-area nav .buy-digital {
	flex: 1;
	text-align: right;
}

#nav-area nav .buy-digital.deactivated.loaded .btn{
	opacity: .8;
	pointer-events: none;
	color: #dadada;
	background-color: #888;
}

#nav-area nav .wrapper > a:not(:last-of-type) {
	border-right: 1px solid #80cce6;
}

@media (max-width: 768px) {
	body.not-at-top.scrolling-up #nav-area.pinned nav {
		transform: translateY(85px);
	}

	#nav-area nav .wrapper {
		font-size: 0.875em;
	}
}

@media (max-width: 640px) {
	#nav-area nav .wrapper {
		font-size: 0.8em;
	}
}

@media (max-width: 570px) {
	#nav-area.wrapper,
	#nav-area nav .wrapper {
		max-width: 100%;
		width: 100%;
	}

	#nav-area nav {
		padding: 0;
		border-radius: 0;
	}

	#nav-area nav .wrapper {
		flex-direction: column;
	}

	#nav-area nav .wrapper > a {
		border-right: none;
		border-bottom: 1px solid #80cce6;
		margin: 0;
		padding: 1em 0;
		text-align: center;
		width: 100%;
	}
}

.gallery {
	width: calc(990px + 4em);
	max-width: 96%;
	margin: 2em auto;
}

@media (max-width: 1133px) {
	.gallery {
		font-size: 1.4vw;
	}
}

.carousel {
	position: relative;
	padding: 0 2em;
}

@media (max-width: 768px) {
	.carousel {
		padding: 0;
	}
}

.carousel .arrow {
	position: absolute;
	z-index: 1;
	cursor: pointer;
	top: calc(50% - 1.75em);
	width: 3.5em;
	height: 3.5em;
	opacity: 0.85;
	transition: opacity 150ms ease-in-out;
}

.gallery.no-pagination .thumbs .arrow {
	display: none;
}

@media (max-width: 768px) {
	.carousel .arrow {
		display: none;
	}
}

.carousel .arrow:hover {
	opacity: 1;
}

.carousel .arrow img {
	display: block;
	width: 100%;
}

.carousel .arrow.left {
	left: 0.25em;
}

.carousel .arrow.right {
	right: 0.25em;
}

.thumbs {
	width: 100%;
	margin-top: 5px;
}

.media {
	width: calc(100% - 10px);
	margin: 0 auto;
}

@media (max-width: 768px) {
	.media {
		width: 100%;
	}
}

.viewport {
	position: relative;
	overflow: hidden;
}

.media .viewport {
	height: 0;
	padding-bottom: 56.25%;
}

.items {
	--carousel-animation-duration: 500ms;
	--carousel-offset: 0;
	display: flex;
	transition: transform var(--carousel-animation-duration) ease-in-out;
	will-change: transform;
	transform: translateX(var(--carousel-offset));
}

.items .item {
	flex: none;
	user-select: none;
	position: relative;
}

.media .items {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0px;
	top: 0px;
}

.media .items .item {
	width: 100%;
	height: 100%;
}

.thumbs .items .item {
	width: calc(100% / 5);
	border: 5px solid transparent;
	cursor: pointer;
}

.thumbs .items .item.video {
	background: #000;
	border-color: #fff;
}

.thumbs .items .item.video::after {
	content: '\e61d';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	font-family: 'icons';
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5em;
	color: rgba(255, 255, 255, 0.5);
	pointer-events: none;
}

@media (max-width: 600px) {
	.thumbs .items .item.video::after {
		font-size: 4em;
	}
}

@media (max-width: 411px) {
	.thumbs .items .item.video::after {
		font-size: 6em;
	}
}

.thumbs .items .item.active,
.thumbs .items .item.video.active {
	border-color: #2576bc;
}

@media (max-width: 768px) {
	.thumbs .items .item {
		width: calc(100% / 4.8);
		border-width: 5px 0;
		margin-right: 10px;
	}
}

@media (max-width: 600px) {
	.thumbs .items .item {
		width: calc(100% / 3.85);
	}
}

@media (max-width: 411px) {
	.thumbs .items .item {
		width: calc(100% / 2.7);
	}
}

.media .items img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.media .items img,
.media .items nclood-video {
	transition: transform var(--carousel-animation-duration) ease-in-out;
	will-change: transform;
	transform: scale(0.8);
}

.media .items .item.active img,
.media .items .item.active nclood-video {
	transform: none;
}

@media (max-width: 768px) {
	.thumbs .items {
		overflow-x: scroll;
	}
}

.thumbs .items .item img {
	width: 100%;
	display: block;
}

.browser-notice {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background: rgba(255, 255, 255, 0.96);
	display: flex;
	align-items: center;
	justify-content: center;
}
.browser-notice p {
	text-align: center;
}

#overview h1 p {
	font-size: 2rem;
	line-height: 1;
	font-family: 'LatoBold', sans-serif;
}

#overview p,
#overview li,
#overview table {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-family: 'LatoLight', sans-serif;
}

#overview p.gd-footnote {
	font-size: 1rem;
	margin: 0.5em 0;
}

#overview p a {
	font-family: 'LatoRegular', sans-serif;
}

#overview a span {
	display: inline-block;
	font-size: 15px;
}

#overview img.inset-char {
	padding-left: 50px;
	padding-bottom: 50px;
	position: relative;
	z-index: 2;
}

#overview .btn {
	line-height: 1.4;
	margin-left: 0;
}

#overview .read-more {
	display: none;
	white-space: nowrap;
	margin-top: 1.25em;
}

#overview .read-more::after {
	content: '\00A0\e602';
	font-family: 'icons';
	font-size: 0.8em;
	display: inline-block;
}

#overview .drawer {
	max-height: 3000px;
	transition: max-height 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	display: block;
	overflow: hidden;
}

#overview .drawer hr {
	display: none;
}

#overview .drawer.truncated {
	max-height: 500px;
	position: relative;
}

#overview .drawer.truncated + p .read-more {
	display: block;
}

#overview .drawer.truncated::after {
	content: '';
	height: 8em;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 2%, rgba(255, 255, 255, 1) 100%);
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 0;
	z-index: 1;
}

#overview .button-row {
	display: flex;
	justify-content: space-between;
}

#overview .button-row a {
	width: 49%;
}

#overview table.e3award {
	display: none;
}

@media (max-width: 768px) {
	#overview img.right {
		display: none;
	}
}

#overview dl {
	font-size: 1.25em;
	column-count: 2;
	column-width: 15em;
	line-height: 1.5;
	flex: 1;
	margin-right: 1rem;
}

#overview dl div {
	white-space: nowrap;
}

#overview dt {
	font-family: 'LatoBold', sans-serif;
	color: #666;
	display: inline;
	margin-right: 0.25em;
	white-space: nowrap;
}

#overview dd {
	color: #8f908f;
	display: inline;
	white-space: normal;
}

#overview .flex {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin-top: 2em;
}

@media (max-width: 600px) {
	#overview .flex {
		flex-wrap: wrap;
	}

	#overview dl {
		width: 100%;
		flex: none;
		margin-bottom: 1em;
		margin-right: 0;
	}
}

#overview .esrb-rating img {
	min-height: 5.625rem;
}

#overview .esrb-rating .descriptors {
	font-size: 0.875rem;
	line-height: 1.3;
	margin-left: 1em;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	max-width: 11rem;
}

#overview .esrb-rating .descriptors div p,
#overview .esrb-rating .descriptors div {
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
	margin: 0;
}

#overview .esrb-rating .descriptors .separator {
	height: 2px;
	background: #000;
	margin: 0.375em 0;
}

#overview .button-row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 1em;
}

#overview .button-row a {
	width: 49%;
	margin: 0.5em 0;
}

#overview .button-row a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1em;
	line-height: 1.3;
	padding: 1em;
}

#overview .button-row a.works-on-wii-u img {
	height: 2em;
}

#overview .button-row a.instruction-manual img {
	margin-right: 1em;
}

#overview .button-row a.works-on-wii-u span {
	font-size: 0.875em;
	margin: 0 1em;
}

@media (max-width: 768px) {
	#overview .button-row a {
		width: 100%;
	}
}

#overview .accessories {
	margin-top: 2em;
}

#overview .accessories h3 {
	font-size: 1.375em;
	font-family: 'LatoRegular';
	color: #999;
}

#overview .accessories .flex {
	align-items: initial;
	justify-content: flex-start;
	flex-wrap: wrap;
}

#overview .accessories .accessory {
	margin: 0 0.75em 1em;
	width: calc(980px / 6 - 1.5em);
	text-align: center;
}

#overview .accessories .accessory .accessory-icon::before {
	font-family: 'accessory-icons';
	display: block;
	text-align: center;
	height: 1.25em;
	font-size: 4em;
	color: #0096CB;
	position: relative;
}

.icon-wii-balance-board::before {
	content: '\f101';
}

.icon-wii-u-pro-controller::before {
	content: '\f102';
}

.icon-nintendo-gamecube-controller::before,
.icon-gcn-controller::before {
	content: '\f103';
}

.icon-wii-remote::before,
.icon-wii-remote-plus::before {
	content: '\f104';
}

.icon-wii-zapper::before {
	content: '\f105';
}

.icon-wii-u-microphone::before {
	content: '\f107';
}

.icon-nunchuck-controller::before {
	content: '\f108';
}

.icon-sdhc-memory-card::before {
	content: '\f109';
}

.icon-wii-remote-classic-controller::before,
.icon-wii-remote-plus-classic-controller::before,
.icon-classic-controller::before {
	content: '\f10b';
}

.icon-fit-meter::before {
	content: '\f10c';
}

.icon-wii-remote-nunchuck-controller::before,
.icon-wii-remote-plus-nunchuck-controller::before {
	content: '\f10d';
}

.icon-wii-wheel::before {
	content: '\f10e';
}

.icon-wii-u-gamepad::before {
	content: '\f10f';
}

.nso-support {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 2em;
	background: #f6f6f6;
	margin: 2em 0;
	color: #777;
}

.nso-support > div {
	width: 48%;
}

@media (max-width: 768px) {
	.nso-support {
		justify-content: center;
		padding: 3%;
	}
	.nso-support > div {
		width: 100%;
	}
	.nso-support .description {
		margin: 0 0 2em;
	}
}

.nso-support .description > img {
	max-width: 10em;
	display: block;
}

.nso-support .features a {
	color: inherit;
	width: 31%;
	text-align: center;
}

.nso-support .features a:not(:last-child) {
	margin-right: 3.5%;
}

.nso-support .feature img {
	display: block;
	width: 100%;
	margin-bottom: 0.5em;
}

.nso-support .feature figcaption {
	font-size: 0.875em;
}

#overview .nso-support .features .flex {
	justify-content: flex-start;
	margin-top: 1em;
}

.nso-support .features a:not(:hover) {
	text-decoration: none;
}

#overview .nso-support p {
	margin: 1em 0;
}

#overview .nso-support p:last-child {
	margin: 1em 0 0;
}

article section.dlc-promo {
	padding: 2em 0;
}

.dlc-promo .wrapper {
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: wrap;
}

.dlc-promo .copy {
	width: 50%;
}

.dlc-promo img {
	width: 50%;
}

@media (max-width: 768px) {
	.dlc-promo .copy,
	.dlc-promo img {
		width: 100%;
	}
	.dlc-promo img {
		order: 1;
	}
	.dlc-promo .copy {
		order: 2;
	}
}

.dlc-promo .copy .btn {
	width: auto;
	padding: 0.5em 3em;
	margin: 0;
}

.dlc-purchase h2 {
	font-family: 'LatoBold';
	font-size: 2em;
	margin: 1em 0 0.75em;
}

.dlc-purchase .see-more {
	font-family: 'LatoBold', sans-serif;
	font-size: 1.125em;
}

.dlc-purchase .see-more::after {
	content: '\e602';
	font-family: 'icons';
	font-size: 1em;
	margin-left: 0.375em;
	display: inline-block;
	transform: translateY(0.1em) rotateZ(90deg);
}

.dlc-purchase .drawer.closed .item:nth-child(n + 4) {
	display: none;
}

.dlc-purchase .drawer:not(.closed) + .see-more {
	display: none;
}

.dlc-purchase .item {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	border-top: 1px solid #dadada;
	padding: 1.75em 0;
}

.dlc-purchase .item > img {
	width: 136px;
	flex: none;
}

.dlc-purchase .item .flex {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: flex-start;
	overflow: hidden;
	margin-left: 1em;
	flex: 1;
}

.dlc-purchase .item .dlc-info {
	flex: 1;
	font-size: 1.125em;
	color: #484848;
	margin-right: 1em;
}

.dlc-purchase .item .dlc-info > * {
	font-size: inherit;
	margin-bottom: 0.5em;
}

.dlc-purchase .item .title,
.dlc-purchase .item .toggle-description {
	font-family: 'LatoBold';
}

.dlc-purchase .item .toggle-description::after {
	content: '\e602';
	font-family: 'icons';
	font-size: 0.8em;
	margin-left: 0.5em;
	display: inline-block;
	transition: transform 300ms ease-in-out;
}

.dlc-purchase .item .drawer-opened .toggle-description::after {
	transform: rotateZ(90deg);
}

.dlc-purchase .item .price {
	font-size: 1.375em;
	color: inherit;
	margin-bottom: 0.5rem;
	font-family: 'LatoBold';
	text-align: right;
}

.dlc-purchase .price .sale-price {
	color: #f47b2b;
}

.dlc-purchase .price.discounted .msrp {
	color: #000;
}

.dlc-purchase .item .release-date {
	color: #999;
}

.dlc-purchase .item .description {
	width: 100%;
	margin-top: 1em;
	display: none;
}

.dlc-purchase .item .description p,
.dlc-purchase .item .description li {
	font-size: 1.125em;
	margin-bottom: 1em;
	font-family: 'LatoLight', sans-serif;
}

.dlc-purchase .item .description ul {
	list-style: disc;
	padding-left: 2em;
}

.dlc-purchase .item .description ol {
	list-style: decimal;
	padding-left: 2em;
	margin-bottom: 1.25em;
}

.dlc-purchase .item .drawer-opened .description {
	display: block;
}

.dlc-purchase .btn.buy-now {
	width: auto;
	padding: 0.5em 1em;
	white-space: nowrap;
	margin: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 200ms ease-in-out 200ms; 
}

.dlc-purchase .btn.buy-now.loaded {
	opacity: 1;
	pointer-events: auto;
}

.dlc-purchase .btn.buy-now.owned {
	background-color: #dadada;
	color: #888;
	cursor: default;
	pointer-events: none; 
}

.dlc-purchase .btn.buy-now::before {
	content: 'Buy now';
}

html:lang(fr-ca) .dlc-purchase .btn.buy-now::before {
	content: 'Acheter maintenant';
}

.dlc-purchase .btn.buy-now.owned::before {
	content: 'Downloaded';
}

html:lang(fr-ca) .dlc-purchase .btn.buy-now.owned::before {
	content: 'Téléchargé';
}

@media (max-width: 1024px) {
	.dlc-purchase {
		font-size: 0.875em;
	}
}

@media (max-width: 570px) {
	.dlc-purchase .item .purchase-info {
		width: 100%;
		margin-top: 1em;
		order: 3;
	}

	.dlc-purchase .item .description {
		order: 2;
	}

	.dlc-purchase .item .price {
		text-align: left;
	}
}

@media (max-width: 360px) {
	.dlc-purchase .item > img {
		width: 33%;
	}
}

#special-offers {
	color: #fff;
	padding: 3em 0;
}

#special-offers .copy * {
	color: inherit;
}

#special-offers h1 {
	margin: 0;
}

#special-offers h1 p {
	font-size: 2rem;
	font-family: 'LatoBold', sans-serif;
	padding-top: 3%;
}

#special-offers .wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}

#special-offers .wrapper > * {
	width: 48%;
}

@media (max-width: 768px) {
	#special-offers .wrapper {
		justify-content: center;
	}

	#special-offers .wrapper > img {
		width: 85%;
	}

	#special-offers .wrapper > .copy {
		width: 100%;
	}
}

#industry-quotes .flex {
	display: flex;
}

#industry-quotes a {
	width: 100%;
	text-align: center;
	opacity: 0;
	pointer-events: none;
	transform: translateY(50%);
	text-decoration: none;
}

#industry-quotes a.active {
	opacity: 1;
	pointer-events: auto;
	transform: none;
	transition: opacity 400ms cubic-bezier(0.175, 0.885, 0.320, 1.275), transform 400ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
}

#industry-quotes a:not(:first-child) {
	margin-left: -100%;
}

#industry-quotes blockquote {
	font-family: 'LatoLight', sans-serif;
	font-size: 2.75rem;
	line-height: 1.2;
	padding: 2rem 0;
}

#industry-quotes blockquote p {
	color: #000;
	font-size: inherit;
	line-height: inherit;
}

#industry-quotes blockquote p::before,
#industry-quotes blockquote p::after {
	display: inline-block;
	font-family: 'LatoRegular', sans-serif;
	color: #0096cb;
	font-size: 3.875rem;
	position: relative;
	line-height: 0.9;
}

#industry-quotes blockquote p::before {
	content: '\201C';
}

#industry-quotes blockquote p::after {
	content: '\201D';
}

#industry-quotes blockquote cite {
	display: block;
	font-family: 'LatoBold', sans-serif;
	font-size: 1rem;
	margin-top: 0.25em;
	opacity: 0;
	transform: translateY(50%);
}

#industry-quotes .active blockquote cite {
	opacity: 1;
	transform: none;
	transition: opacity 400ms cubic-bezier(0.175, 0.885, 0.320, 1.275) 450ms, transform 400ms cubic-bezier(0.175, 0.885, 0.320, 1.275) 450ms;
}

#industry-quotes .quote-count {
	text-align: center;
	font-size: 0.875em;
	color: #999;
	font-family: 'LatoRegular', sans-serif;
	margin: 0;
}


#industry-awards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 auto;
	padding-bottom: 0;
}

#industry-awards .award {
	text-align: center;
	width: 46%;
	margin: 0 2% 3em;
}

#industry-awards h3 p {
	font-size: 2rem;
}

#industry-awards .award > p {
	font-family: 'LatoBold', sans-serif;
}

@media (max-width: 480px) {
	#industry-awards .award {
		width: 100%;
		margin: 0 auto 3em;
	}
}

#amiibo {
	background: url('/images/page/games/detail/amiibo-background.png') top center no-repeat;
	background-size: cover;
	padding: 2.5em 0;
}

#amiibo .flex {
	display: flex;
	align-items: flex-start;
	justify-content: space-around;
	flex-wrap: wrap;
}

#amiibo .flex a {
	width: 22%;
	transition: transform 150ms ease-in-out;
	backface-visibility: hidden;
	text-decoration: none;
}

@media (max-width: 768px) {
	#amiibo .flex a {
		width: 47%;
	}
}

#amiibo .flex a:hover {
	transform: scale(1.1);
}

#amiibo .see-all {
	white-space: nowrap;
}

#amiibo .see-all::after {
	content: '\00A0\e602';
	font-family: 'icons';
	font-size: 0.8em;
	display: inline-block;
}

#amiibo figure {
	text-align: center;
}

#amiibo figcaption {
	font-size: 1.25rem;
}

#amiibo p.small {
	margin-top: 2rem;
	font-size: 0.75rem;
}

#recommended-games .flex {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

#recommended-games header {
	display: flex;
	align-items: flex-start;
}

#recommended-games h1 {
	flex: 1;
}

#recommended-games a.see-all {
	flex: none;
	white-space: nowrap;
	font-size: 1.125em;
	margin-bottom: 1rem;
}

#recommended-games a.see-all::after {
	content: '\00A0\e602';
	font-family: 'icons';
	font-size: 0.8em;
	display: inline-block;
}

#recommended-games .flex a {
	width: 180px;
	margin: 1em calc((25% - 180px) / 2);
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	text-decoration: none;
}

#recommended-games .title {
	font-family: 'LatoBold';
}

#recommended-games .release-date {
	color: #999;
	font-size: 0.875em;
}

#recommended-games .platform {
	color: #999;
	border-bottom: 3px solid;
	margin-top: 0.625em;
}

#recommended-games .platform-switch .platform {
	border-color: #e60012;
}

#recommended-games .platform-wii-u .platform {
	border-color: #0096c8;
}

#recommended-games .platform-3ds .platform {
	border-color: #ce181e;
}

#recommended-games .price {
	margin: 0.5em 0 0 !important;
	color: #000;
	font-size: 1.25em;
	font-family: 'LatoBold';
}

#recommended-games .flex a.discounted .sale-price {
	display: inline-block;
	color: #f47b2b;
}

#recommended-games .flex a.discounted .msrp {
	text-decoration: line-through;
	font-size: 0.85em;
	font-family: 'LatoLight';
}

@media (max-width: 820px) {
	#recommended-games .flex {
		justify-content: center;
	}
	#recommended-games .flex a {
		margin: 1em calc((50% - 180px) / 2);
	}
}

@media (max-width: 570px) {
	#recommended-games header {
		flex-direction: column;
	}
	#recommended-games h1 {
		margin-bottom: 1rem;
	}
}

@media (max-width: 480px) {
	#recommended-games .flex a {
		width: 46%;
		margin: 1em 2%;
	}
}

#recommended-games .boxart {
	display: flex;
	margin-bottom: 0.75em;
	justify-content: flex-start;
	align-items: center;
	height: 200px;
	position: relative;
}

#recommended-games .boxart > div {
	position: relative;
	width: 100%;
	height: 100%;
}

#recommended-games .boxart .sale-tab {
	position: absolute;
	bottom: 100%;
	left: 0.5rem;
	background-color: #f47b2b;
	color: white;
	border-radius: 0.5rem 0.5rem 0 0;
	font-size: 0.825em;
	padding: 0.075em 1em;
	position: absolute;
	font-family: 'LatoBold';
	display: none;
}

#recommended-games .flex a.discounted .boxart .sale-tab {
	display: inline-block;
}

#recommended-games .boxart img {
	max-height: 100%;
	max-width: 100%;
}

#faq .faq-drawer {
	border-top: 1px solid #e2e2e2;
}

#faq .question {
	color: #2576bc;
	font-size: 1.375em;
	display: inline-block;
	padding: 1.25rem;
}

#faq .answer {
	max-height: 0;
	overflow: hidden;
	font-size: 1.125em;
	padding: 0 1.25rem;
	transition: max-height 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

#faq .faq-drawer.opened .answer {
	max-height: 700px;
	transition: max-height 500ms cubic-bezier(0.550, 0.055, 0.675, 0.190);
}

#faq .answer * {
	font-size: inherit;
}

#faq .answer ol {
	list-style-type: decimal;
	list-style-position: inside;
	font-family: 'LatoLight', sans-serif;
}

#faq .answer ol li {
	padding-left: 2em;
}

.game-awards-badge {
	position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    min-width: 120px;
    max-width: 200px;
    background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,0));
    padding-bottom: 5%;
}

.game-awards-wrapper {
	text-align: center;
	font-size: 1.2em;
	color: #fff;
	font-weight: bold;
	padding-top: 1.2em;
}

	.game-awards-wrapper img {
		width: 80%;
	}

	.game-awards-wrapper .divider {
		width: 80%;
		height: 1px;
		background: white;
		opacity: .5;
		margin: .25em auto;
	}

	.game-awards-wrapper .award.metroid {
		font-size: .9em;
	}

@media (max-width: 768px) {
	.game-awards-wrapper {
		padding-top: .5em;
		font-size: .75em;
	}

		.game-awards-wrapper .divider {
			margin: .35em auto;
		}
}

@media (max-width: 600px) {
	.game-awards-badge {
		background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0));
		padding-bottom: 8%;
	}
	.game-awards-wrapper .divider {
		display: none;
	}

	.game-awards-wrapper .award {
		display: none;
	}
}

