/* prefixed by https://autoprefixer.github.io (PostCSS: v7.0.26, autoprefixer: v9.7.3) */

@font-face {
  font-family: 'TOKYO2020-DeBold';
  src: url('../fonts/ENG/TOKYO2020-DeBold.eot');
  src: url('../fonts/ENG/TOKYO2020-DeBold.eot?#iefix') format('embedded-opentype'),
       url('../fonts/ENG/TOKYO2020-DeBold.svg#TOKYO2020-DeBold') format('svg'),
       url('../fonts/ENG/TOKYO2020-DeBold.ttf') format('truetype'),
       url('../fonts/ENG/TOKYO2020-DeBold.woff') format('woff'),
       url('../fonts/ENG/TOKYO2020-DeBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'TOKYO2020-Regular';
  src: url('../fonts/ENG/TOKYO2020-Regular.eot');
  src: url('../fonts/ENG/TOKYO2020-Regular.eot?#iefix') format('embedded-opentype'),
       url('../fonts/ENG/TOKYO2020-Regular.svg#TOKYO2020-Regular') format('svg'),
       url('../fonts/ENG/TOKYO2020-Regular.ttf') format('truetype'),
       url('../fonts/ENG/TOKYO2020-Regular.woff') format('woff'),
       url('../fonts/ENG/TOKYO2020-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'TOKYO2020-Bold';
  src: url('../fonts/ENG/TOKYO2020-Bold.eot');
  src: url('../fonts/ENG/TOKYO2020-Bold.eot?#iefix') format('embedded-opentype'),
       url('../fonts/ENG/TOKYO2020-Bold.svg#TOKYO2020-Bold') format('svg'),
       url('../fonts/ENG/TOKYO2020-Bold.ttf') format('truetype'),
       url('../fonts/ENG/TOKYO2020-Bold.woff') format('woff'),
       url('../fonts/ENG/TOKYO2020-Bold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
}

/*
  font-size: calc([minimum size] + ([maximum size] - [minimum size]) * ((100vw - [minimum viewport width]) / ([maximum viewport width] - [minimum viewport width])));
}
*/

/* CSS Reset */
* {-webkit-box-sizing: border-box;box-sizing: border-box}
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
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}
a {text-decoration: none;}

/* common styles */
html,body{position:relative;display:block;width:100%;height:100%;min-height:100%;color:#000;}
html, body>div {overflow-x: hidden;}

span {font-family:"TOKYO2020-DeBold", sans-serif;}
body, p  {font-family:"TOKYO2020-Regular", sans-serif; font-size: 14px; }
h1 {text-transform: uppercase; font-size: 9.5vw;}
h2 {text-transform: uppercase; font-size: 6.6vw;}
h4 {text-transform: uppercase; font-size: 18px;}
h5 {text-transform: uppercase; font-size: 3.5vw}
p {line-height: 1.4;}
.smallerTitle {font-size: 8.0vw}

@media screen and (min-width: 538px) {
	h2 {
		font-size: 35.5px;
	}
}
@media screen and (min-width: 558px) {
	h5 {
		font-size: 19.5px;
	}
	p {
		font-size: 16px;
	}
}
@media screen and (min-width: 768px) {
	h1 {
		font-size: 72px;
	}
	.smallerTitle {font-size: 60px}
}
@media screen and (min-width: 1080px) {
	h4 {
		font-size: 20px;
	}
}

.container{max-width:100%;margin:0 auto;position:relative}
.responsive-break{display:inline}
.table{display:table;min-height:300px;height:inherit}
.table-cell{display:table-cell;min-height:300px;vertical-align:bottom;position:relative}
.clearfix::after{content:" ";display:block;clear:both;height:0;width:100%;line-height:0;border:none;visibility:hidden}
.boldFont{font-family:"TOKYO2020-Bold", sans-serif;} 
.deboldFont {font-family:"TOKYO2020-DeBold", sans-serif;}
.red {color: #cb2039!important}
.white {color: #FFF!important}
.blue {color: #002063;}
/*common*/
#language {display: none!important;}
.isHover {
	opacity: 1;
	-o-transition: opacity .32s;
	transition: opacity .32s;
	-webkit-transition: opacity .32s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	   transition-timing-function: ease;
}
.isHover:hover {
	opacity: .75;
}
/*animate up uses function in app.js to complete*/
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*loader*/
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ellipsis div {
  position: absolute;
  bottom: 0;
  width: 12px;
  height: 11px;
  border-radius: 50%;
  background: #002063;
  -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
          animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 6px;
  -webkit-animation: lds-ellipsis1 0.6s infinite;
          animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 6px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
          animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 26px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
          animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 45px;
  -webkit-animation: lds-ellipsis3 0.6s infinite;
          animation: lds-ellipsis3 0.6s infinite;
}
@-webkit-keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@-webkit-keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(19px, 0);
            transform: translate(19px, 0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(19px, 0);
            transform: translate(19px, 0);
  }
}

#loader-bg {
	display: block;
	position: fixed;
	background-color: #FFF;
	overflow: hidden;
	z-index: 99999;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
#loader {
	color: #FFF;
	display: block;
	position: absolute;
	z-index: 300;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
	text-shadow: 0 0 2.2vw #002063, -1px -1px 0 #002063, 1px -1px 0 #002063, -1px 1px 0 #002063, 1px 1px 0 #002063;
	font-size: 11vw;
	letter-spacing: -.5vw;
	font-family: Arial, "sans-serif";
}

@media only screen and (min-width:769px) {
	#loader {
		font-size: 107.47px;
		letter-spacing: -2px;
	}
}
#loading-dots {
	position: absolute;
}


/*Nav Area*/

nav {
width: 100%;
    max-width: 1900px;
    margin: 0 auto;
    position: relative;
}

/*EFLAGS*/
.showEflags {
	display: block!important;
    width: 100px;
    position: absolute;
    right: 55px;
    top: 12px;
}
.eflagsGroup { 
/*	position: absolute; */
	z-index: 5; 
	vertical-align: middle;
	display: none;
}
.eflagsDropContent {
	display: none; 
	position: absolute; 
	width: 100px; 
	z-index: 10000; 
	text-align: center;     
	background-color: rgba(92, 92, 91, 0.75); 
	border-left: 1px solid rgba(92, 92, 91, .75);
	border-right: 1px solid rgba(92, 92, 91, .75);
}
.eflagsDropContent li {
	display: block;
	border-bottom: 1px solid rgba(92, 92, 91, .75);
	width: 100%;
}
.eflagsDropContent a {
	color: #FFF;
	padding: 5px;
	display: block;
}
.eflagsDropContent a:hover {
	background-color: rgba(92, 92, 91, 1);
}
.hideFlag {
	display:none;
}
.mainFlagAndText {
	border: 1px solid rgba(92, 92, 91, .75);
    height: 37px;
    width: 100px;
    position: relative;
	background-color: rgba(92, 92, 91, .75);
	cursor: pointer;
}
.langByFlag {
    display: inline-block;
    vertical-align: middle;
    color: #FFF;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.arrow {
	font-size: 10px;
    margin-left: 15px;
}
.efigs img, .efigs p {
    display: inline-block;
    font-size: 11px;
}
@media only screen and (min-width:815px) {
	.eflagsGroup { 
		display: inline-block;
	}
}
/*END EFLAGS*/
/*Hero*/
#hero {
	position: relative;
	z-index: 1;
}
.heroImg {
	height: 100%;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
    position: absolute;
    top: 0;
	width: 100%;
    z-index: -1;
}
.heroVideo {
	height: 150%;
	left: -15%;
	 -o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	top: -40%;
	width: 170%;
	z-index: -1;
}
.heroGroup {
	left: 50%;
	padding: 200px 0;
	position: relative;
	text-align: center;
	transform: translate(-50%, 0);
	width: 95%;
	max-width: 700px;
}
.heroGroup img {
	width: 100%;
}
.hamburgerBtn {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 50px;
	z-index: 2;
	display: block;
	cursor: pointer;
}
.ovgLogo {
	position: absolute;
	top: 0;
	left: 6%;
	width: 13%;
	max-width: 120px;
}
.navLinksGroup {
	width: 610px;
    right: 15px;
    position: absolute;
}
.navText {
	text-decoration: none;
	text-transform: uppercase;
	color: #FFF;
	display: none;
	margin-right: 30px;
	text-shadow: 0px 0px 2.5px #000, 0 0 5px #000;
}
.navText:hover {
	color: rgb(252, 177, 49);
}
.fomTag {
	text-transform: uppercase;
	color: white;
	background-color: rgb(252, 177, 49);
	padding: 20px 20px;
	width: 80%;
	max-width: 200px;
	text-align: center;
	opacity: 1;
	-webkit-transform: translate(50%);
	    -ms-transform: translate(50%);
	        transform: translate(50%);
	-o-transition: opacity .32s;
	transition: opacity .32s;
	-webkit-transition: opacity .32s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	   transition-timing-function: ease;
	display: none;
}
.fomTag:hover {
	opacity: .75;
}
.heroCallout {
	position: absolute;
	top: 28%;
	left: 50%;
	-webkit-transform:translate(-50%);
	    -ms-transform:translate(-50%);
	        transform:translate(-50%);
	width: 100%;
	color: #FFF;
	text-align: center;
	z-index: 0;
	cursor: default;
}
.heroCallout h1, .heroCallout h2, .heroCallout h5 {
	text-shadow: 0px 0px 5px #000, 0 0 10px #000;
}
.breakSmall {
	display: block;
}
.heroBtnGroup {
	width: 95%;
	max-width: 700px;
	margin: 0 auto;
}
#trailer, .preorderBtn {
	width: 100%;
	max-width: 250px;
	margin: 20px auto 0;
	display: inline-block;
}
#trailer a {
	text-decoration: none;
	color: white;

}
.trailerBtn, .preorderBtn {
	width: 100%;
	border: 1px solid #FFF;
	background-color: rgba(0,0,0, .35);
	padding: 23px 0;
	-o-transition: background-color .32s;
	transition: background-color .32s;
	-webkit-transition: background-color .32s;
}
.trailerBtn:hover {
	background-color: rgba(0,0,0, .75);
}
.preorderBtn {
	border: none;
	text-transform: uppercase;
	color: white;
	background-color: rgb(252, 177, 49);
	opacity: 1;
	-o-transition: opacity .32s;
	transition: opacity .32s;
	-webkit-transition: opacity .32s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	   transition-timing-function: ease;
}
.preorderBtn:hover {
	opacity: .75;
}
.trailerTriangle {
	margin-right: 15px;
}
.countdownGroup {
	position: absolute;
	left: 50%;
	-webkit-transform: translate(-50%);
	    -ms-transform: translate(-50%);
	        transform: translate(-50%);
	bottom: 15px;
	color: white;
	text-align: center;
	text-shadow: 0px 0px 2.5px #000, 0 0 5px #000;
}
.countdownNum {
	font-size: 52px;
}
@media screen and (min-width: 532px) {
	#trailer, .preorderBtn {
		margin: 20px 7px 0;
	}
}
@media screen and (min-width: 600px) {
	.fomTag {
		bottom: auto;
		right: 140px;
		top: 0;
		-webkit-transform: translate(0);
		    -ms-transform: translate(0);
		        transform: translate(0);
		letter-spacing: 0.5px;
		margin-right: 20px;
	}
	.navContainer {
		position: absolute;
		top: 0;
		left: 50%;
		-webkit-transform: translate(-50%);
		    -ms-transform: translate(-50%);
		        transform: translate(-50%);
		width: 100%;
		max-width: 1920px;
		z-index: 5;
	}
	.consoleList {
		margin-top: 10px;
	}
}
@media screen and (min-width: 640px) {
	.breakSmall {
		display: none;
	}
	.ovgLogo {
		width: 10%;
	}
}
@media screen and (min-width: 815px) {
	.fomTag {
		display: inline-block;
	}
	.hamburgerBtn {
		display: none;
	}
	.navText {
		display: inline-block;
	}
}
@media screen and (min-width: 900px) { 

	#trailer, .preorderBtn {
		max-width: 300px;
	}
}
@media screen and (min-width: 1080px) { 
	.countdownNum {
		font-size: 60px;
	}
}

/*EVENTS*/
.mosaic {
	background-color: #000;
	font-size: 0;
	width: 100%;
	max-width: 2400px;
	margin: 0 auto;
	column-count: 1;
	z-index: 0;
	position: relative;
}
.videoTile {
	width: 100%;
	height: auto;
	overflow: hidden;	
	position: relative;
}
.videoTile img {
	max-width: 100%;
}
.videoTile video, .coveredVideo {
	width: auto;
    position: absolute;
    height: 100%;
	top:0;
	left:0;
}
.coverUpVideo {
	position: relative;
	top: 0;
	left: 0;
	opacity: 1;
	z-index: 1;
}
.lgMosaicTitleShowSmall, .hideThreeColumn {
	display: block;
}
.lgMosaicTitleShowLarge, .visibleThreeColumn {
	display: none;
}
.showOnHover {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 80%;
	background-color: rgba(255, 255, 255, .65);
    transition: all 0.4s ease-in-out 0s;
	transform: translateY(100%);
	z-index: 1;
}
.doubleMosaic .showOnHover, .lgMosaicTitleShowLarge .showOnHover,
.lgMosaicTitleShowSmall .showOnHover {
	height: 42.5%;
}
.videoTile:hover .showOnHover {
	transform:translateY(0);
	backface-visibility: hidden;
}
.hoverText {
	position: absolute;
	top: 50%;
	left: 50%;
	transform:translate(-50%, -50%);
	width: 80%;
	color: #002063;
}
.hoverText h2 {
	width: 100%;
	line-height: 1.25;
	font-size: 5vw;
}
.hoverText p {
	font-size: 12px;
}
.slide img {
	height: 100%;
}
@media (min-width: 400px) {
	.mosaic {
		column-count: 2;
	}
}
@media screen and (min-width: 640px) {
	.hoverText h2 {
		font-size: 25.5px;
	}
	.hoverText p {
		font-size: 14px;
	}
}
@media (min-width: 768px) {
	.mosaic {
		column-count: 3;
	}
	.hideThreeColumn {
		display: none;
	}
	.visibleThreeColumn {
		display: block;
	}
}
@media (min-width: 1080px) {
	.showOnHover {
		height: 60%;
	}
	.doubleMosaic .showOnHover, .lgMosaicTitleShowLarge .showOnHover,
	.lgMosaicTitleShowSmall .showOnHover {
		height: 30%;
	}
	.hoverText h2 {
		font-size: 34.5px;
	}
	.hoverText p {
		font-size: 16px;
	}
}
@media (min-width: 1350px) {
	.mosaic {
		column-count: 4;
	}
	.lgMosaicTitleShowSmall, .visibleThreeColumn {
		display: none;
	}
	.lgMosaicTitleShowLarge, .hideThreeColumn {
		display: block;
	}
}
@media (min-width: 1940px) {
	.mosaic {
		column-count: 5;
	}
}

/*PURCHASE*/
#purchase {
    width: 100%;
    text-align: center;
    padding: 100px 0;
	background-color: #FFF;
	position: relative;
	z-index: 1;
}
#purchase h1 {
	color: #002063;
}
#purchase h5 {
	margin-bottom: 10px;
}
.purchaseTextGroup {
	width: 90%;
	max-width: 740px;
	display: inline-block;
	vertical-align: top;
	 z-index: 1;
    position: relative;
}
.smPurchaseImg {
	width: 95%;
	max-width: 430px;
	display: block;
	margin: 0 auto 35px;
}
.lgPurchaseImg {
	width: 30%;
	max-width: 425px;
	display: none;
	vertical-align: top;
}
.selectPlatform ul {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
}
.selectPlatform ul li {
    width: 17.6%;
	max-width: 100px;
    margin-right: 1%;
    display: inline-block;
}
.selectPlatform ul li img {
	width: 100%;
	opacity: .45;
	cursor: pointer;
	-webkit-transition: opacity .32s;
	-o-transition: opacity .32s;
	transition: opacity .32s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	   transition-timing-function: ease;
}
.selectPlatform ul li img:hover {
	opacity: 1;
}
#active {
	opacity: 1;
}
.retailLinks, .digitalLinks {
	width: 100%;
	max-width: 768px; 
}
.retailButton {
	background-color: rgba(252, 177, 49, 1);
	color: white;
	padding: 20px 15px;
	width: 175px; 
	display: inline-block;
	margin: 0 10px 15px 0;
	text-align: center;
	text-transform: uppercase;
	opacity: 1;
	-o-transition: opacity .32s;
	transition: opacity .32s;
	-webkit-transition: opacity .32s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	   transition-timing-function: ease;
}
.retailLinks aside a div:hover, .digitalLinks aside a div:hover {
	opacity: .75;
}
.retailButton div span {
	display: inline-block
}
@media screen and (min-width: 1080px) {
	.lgPurchaseImg {
		display: inline-block;
	}
	.smPurchaseImg{
		display: none;
	}
	.purchaseTextGroup {
		width: 55%;
		max-width: 740px;
		margin-left: 40px;
		text-align: left;
	}
	.selectPlatform ul {
		margin: inherit;
	}
}
/*NEWSLETTER*/			
.signupArea {
	background-color: #f5f5f5;
	position: relative;
    overflow-x: visible;
	z-index: 1;
}
.fixOverflowVertical{
	overflow-x:hidden;
	overflow-y: hidden;
}
.submitButtonSignUp {
	position: relative;
}
.newsletterBox {
	width: 95%;
	max-width: 360px;
	margin: 0 auto;
	padding: 30px 0;
	position: relative;
    z-index: 2;
}
.newsletterBox h1, .newsletterBox h4, .newsletterHeader, .dobHeader {
	text-transform: uppercase;
	text-align: center;
}
.newsletterBox h4 {	
	margin-bottom: 20px;
}
.newsletterHeader, .dobHeader {
	font-size: 14px;
	font-weight: 600;
	font-family:"TOKYO2020-Regular", sans-serif!important;
}
.datepart  {
	width: 25%!important;
}
.yearfield .datepart {
	width: 44.2%!important;
}
.platformUL {
	width: 100%;
	padding: 3%;
}
.platformUL li {
	width: 18.55%;
    display: inline-block!important;
    margin-right: .5%!important;
}
.platformUL li:last-child {
    margin-right: 0!important;
}
.platformIcon {
	opacity: .45;
	width: 100%;
	cursor: pointer;
}
.platformCheckbox {
	position: absolute;
	opacity: 0;
}
.platformGroup {
	padding-top: 15px!important;
	width: 97%!important;
	margin: 0 auto!important;
}
.privacyNewsletter {
	font-weight: 800;
	color: #000;
	font-family:"TOKYO2020-DeBold", sans-serif!important;
}
.privacyNewsletter:hover {
	color: red;
}
#mc_embed_signup {
	background-color: transparent!important;
}
#mc_embed_signup form {
    padding: 10px 0 10px 0!important;
    width: 100%!important;
}
#mc_embed_signup .mc-field-group.input-group ul li {
   	padding: 0!important;
}
#mc_embed_signup .datefield input {
    margin: 0 1.5px!important
}
.datefield {
	text-align: center!important;
}
/* Customize the label (the container) */
.myCheckbox {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.myCheckbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #FFF;
	border: 1px solid #b4b4b4;
}

/* On mouse-over, add a grey background color */
.myCheckbox:hover input ~ .checkmark {
	background-color: #b4b4b4;
}

/* When the checkbox is checked, add a blue background */
.myCheckbox input:checked ~ .checkmark {
	background-color: #fcb131;
	border: 1px solid #fcb131;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.myCheckbox input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.myCheckbox .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
#mc_embed_signup .mc-field-group#checkBoxes ul li label {
    display: inline-block;
	vertical-align: middle;
	font-family:"TOKYO2020-Regular", sans-serif!important;
}
#mc_embed_signup .mc-field-group#checkBoxes ul li label:last-child {
    margin-left: 12%;   
    position: relative;
    top: -10px;
	
}
/*in the email address box, centers the text*/
#mc_embed_signup .mc-field-group input {
    text-align: center;
}
/*change text in the email field input*/
#mc_embed_signup .mc-field-group input {
    padding: 20px 0!important;
	background-color: #f0f0f0;
	text-indent: 0;
    font-size: 14px;
	color: #787878!important;
	border-radius: 0!important;
}
/*change the border when focused in the email field*/
#mc_embed_signup input:focus {
    border-color: #f0f0f0!important;
}
.coverUpButton {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 63px;
	z-index: 5;
}
.showCover {
	display: block;
}
#mc_embed_signup .button {
	display: none!important;
}
#mc_embed_signup .submitButtonSignUp {
	color: #fff!important;
    background-color: rgba(252, 177, 49, 1)!important;
    border-radius: 0!important;
    width: 80%!important;
    margin: 0 auto!important;
    display: block!important;
	font-family:"TOKYO2020-DeBold", sans-serif!important;
	position: relative;
	text-align: center;
    padding: 23px 0;
	cursor: pointer
}
#mc_embed_signup .submitButtonSignUp:hover {
	opacity: .75;
}
#mc_embed_signup .submitButtonSignUp.notActive {
    background-color: rgba(252, 177, 49, .45)!important;
	cursor: default;
}
#mc_embed_signup .submitButtonSignUp div {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	text-transform: uppercase;
}
#mc_embed_signup .mc-field-group {
    display: block;
	margin: 0 auto;
}
#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
    margin: 2px 0 -5px 0!important;
}
#mc_embed_signup div.response {
    margin: 10px 0!important;
    padding: 0!important;
    width: 100%!important;
	display: none!important;
}
.responseText {
    margin: 10px 0!important;
    padding: 0!important;
    width: 100%!important;
	color: green;
	font-size: 14px;
}
.responseText ~ .responseText {
	display: none;
}
#mc_embed_signup div#mce-responses {
    float: none!important; 
    top: 0!important; 
    padding: 0!important;
    width: 96%!important;
    margin: 0 auto!important;
    display: block!important;
	text-align: center!important;
}
#mc_embed_signup .asterisk {
    font-size: 110%!important;
    top: 0px!important;
}
/*Newsletter Figures */
.revealOnScroll {
	opacity: 0;
}
.containOlympianFigures {
	position: relative;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}
.containToRight {
	position: absolute;
	width: 530px;
    right: -250px;
}
.boxer, .longjump {
	position: absolute;
}
.boxer {
	width: 900px;
    top: 100px;
    left: -480px;
    z-index: 1;
	display: none;
}
.longjump {
    width: 580px;
	left: 0;
	top: 25px;
	display: none;
	z-index: 2;
}
@media screen and (min-width: 768px) {
	.longjump {
		display: block;
	}
}
@media screen and (min-width: 880px) {	
	.containToRight {
		right: -220px;
	}
	.boxer {
		display: block;
	}
}
@media screen and (min-width: 1200px) {	
	.containToRight {
		width: 540px;
		right: -115px;
	}
	.boxer {
		width: 930px;
	}
}

/*Footer*/
footer {
	-webkit-box-shadow: inset 0px 30px 18px 0px rgba(229,229,229,.75);
	box-shadow: inset 0px 30px 18px 0px rgba(229,229,229,.75);
	width: 100%;
    position: relative;
    background: #fff;
}
.footerContainer {
	width: 95%;
    margin: 0 auto;
    padding: 60px 0;
	z-index: 2;
	position: relative;
}
.logosGroup, .copy {
	width: 90%;
	max-width: 615px;
    vertical-align: middle;
    margin: 0 auto;
}
.logosGroup {
	width: 100%;
	text-align: center;
}
.logosGroup img, .logosGroup a img {
	height: 71px!important;
	margin-right: 15px!important;
	margin-bottom: 15px;
	vertical-align: middle;
}
.logosGroup img:last-child {
	height: 50px;
	margin-right: 0;
}
.copy {
	font-size: 12px;
	line-height: 1.25;
}
.policies {
	width: 100%;
	max-width: 400px;
	margin: 40px auto;
}
.policies p {
	display: inline-block;
	width: 49%;
	text-align: center;
	text-transform: uppercase;
}
.policies a {
	color: black;
	-o-transition: color .32s;
	transition: color .32s;
	-webkit-transition: color .32s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	   transition-timing-function: ease;
}
.policies a:hover {
  color: #fcb131;
}
.socialIcons {
	width: 84%;
	margin: 0 auto;
	text-align: center;
}
.socialIcons img {
	margin: 0 25px 0 0;
	display: inline-block;
	height: 40px;
}
/*
.socialIcons img:hover {
	opacity: .65

}
*/
.socialIcons a:last-child img {
	margin: 0 auto;
}
.psLogo {
	height: 10px;
}
/*Intro*/
#media {
	padding: 70px 0;
	background-color: #f5f5f5;
	text-align: center;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.introTextGroup {
	width: 95%;
	margin: 0 auto;
	max-width: 800px;
}
.introInnerContainer {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
#media h1, #media h5, #media h2 {
	color: #002063;
}
.astronaut	{
	width: 200%;
	max-width: 900px;
	transform: translate(-30%, -5%);
	z-index: 0;
}
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(-30%);
        transform: translateZ(-30%)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(-30%);
        transform: translateZ(-30%)
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}
/*Features*/
#features {
	position: relative;
	z-index: 1;
}
.features {
	background-image: url("../img/features/features_bg_small.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    overflow: hidden;
	text-align: center;
	padding: 25px 0;
}
/*
.smallFeatureGroup {
	display: inline-block;
    height: 460px;
    position: relative;
    margin: 25px 25px;
    text-align: left;
    width: 350px;
	z-index: 1;
}
*/
.smallFeatureGroup {
    display: inline-block;
    height: 420px;
    position: relative;
    margin: 25px 0;
    text-align: left;
    width: 310px;
    vertical-align: top;
    z-index: 1;
}
.smallFeatureGroup div {
	margin: 0 auto;
    padding: 10px 0;
    width: 90%;
}
.smallFeatureGroup h2 {
	text-transform: uppercase;
}
.smallFeatureGroup img {
    border: 3px solid #fbb811;
	bottom: 20px;
	left: 5%;
	position: absolute;
    width: 90%;
}
#basketballBG {
	background-image: url(../img/features/basketball_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 35% 0;
    overflow: hidden;
}
#boxingBG {
	background-image: url("../img/features/boxing.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 45% 0;	
    overflow: hidden;	
}
#swimmingBG {
	background-image: url(../img/features/swimming.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 35% 0;	
    overflow: hidden;	
}
@media screen and (min-width: 400px) {	
	.smallFeatureGroup {
		height: 460px;
		margin: 25px 25px;
		width: 350px;
	}
}
@media screen and (min-width: 558px) {	
	.smallFeatureGroup {
		height: 540px;
		width: 430px;
	}
}
@media screen and (min-width: 1464px) {	
	.features {
		background-image: url("../img/features/features_bg.jpg");
	}
}
/*QUOTE SECTION*/
#quote {
	position: relative;
}
.trackImg {
	width: 100%;
}
.quoteText {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	text-align: center;
	width: 90%;
	line-height: 1.35;
}
.breakSmall {
	display: block;
}
@-webkit-keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}
@keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}
.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut
}
@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}
.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}
@-webkit-keyframes zoomInShort {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9);
    }

    50% {
        opacity: 1
    }
}
@keyframes zoomInShort {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9);
    }

    50% {
        opacity: 1
    }
}
.zoomInShort {
    -webkit-animation-name: zoomInShort;
    animation-name: zoomInShort
}
@media screen and (min-width: 768px) {
	.breakSmall {
		display: none;
	}
	.quoteText {
		line-height: 1.1;
	}
}
@media screen and (min-width: 950px) {
	.quoteText {
		line-height: 1.35;
	}
}

/*Modal*/
#hamburgerModal {
	height: 100%;
	width: 100%;
	background-color: white;
	position: absolute;
	top: 46px;
	right: 0;
	z-index: 10;
	display: none;
	opacity: 1;
}
.modalGroup {
	width: 90%;
	max-width: 300px;
	margin: 0 auto;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.modalTextGroup {
	margin-top: 45px;
}
.modalTextGroup h4:not(.preorderBtn) {
	margin: 30px auto;
	text-decoration: none;
	color: #002063;
}
.modalLogo {
	display: block;
    margin: 0 auto;
	height: 200px;
}
.closeBtnGroup {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 15px;
	right: 15px;
	cursor: pointer;
}
.firstLineOfX {
	height: 30px;
	width: 2px;
	margin-left: 12px;
	background-color: #002063;
	transform: rotate(45deg);
	z-index: 1;
}
.secondLineOfX {
	height: 30px;
	width: 2px;
	background-color: #002063;
	transform: rotate(90deg);
	z-index: 2;
}

/*NEW SECTIONS*/
/*Media*/
.trailerContainer {
    margin: 0 auto;
    max-width: 1200px;
	position: relative;
    text-align: center;
	z-index: 1;
}
.trailerNext, .trailerPrev {
	cursor: pointer;
    position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	width: 30px;
}

.playTrailer {
	border: 3px solid #002063;
    max-width: 600px;
    width: 100%;
}
.trailerNext {
	right: 0;
}
.trailerPrev {
	left: 0;
	z-index: 1;
}
.mediaImg {
	width: 100%;
}
.carouselVideo {
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.trailerCarousel {
	position: relative;
    width: 83%;
    margin: 0 auto;
}
.playButton {
	left: 50%;
	opacity: .75;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
}
@media screen and (min-width: 640px) {
	.mediaGroup {
		padding: 75px 0;
	}
	.trailerCarousel {
		width: 95%;
	}
	.trailerNext {
		right: -15px;
	}
	.trailerPrev {
		left: -15px;
	}
}
@media screen and (min-width: 1024px) {
	.trailerNext {
		right: -35px;
	}
	.trailerPrev {
		left: -35px;
	}
}
/* Age Gate Modal - NOTE need the JS for this to work. */
.showIfAgeOkay {
	opacity: 0;
}

.ageGateModal, .ageGateModalNoPass {
    display: block;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
}
.ageGateModalNoPass {
	display: none;
}
.ageGateContainer {
	background-color: #f5f5f5;
	left: 50%;
	max-width: 800px;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}
.innerAgeGateGroup {
	padding: 50px 0;
}
.fields {
	margin-top: 20px;
}
.selectContainer {
	display: inline-block;
	max-width: 200px;
	margin: 0 .75%;
	position: relative;
	width: 30%;
}
/*this makes original select disappear*/
.selectContainer select {
 	display: none; 
}
.select-selected {
	background-color: rgba(252, 177, 49, 1);
}
/*creates arrow for custom select*/
.select-selected:after {
	position: absolute;
	content: "";
	top: 14px;
	right: 10px;
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-color: #FFF transparent transparent transparent;
}
.select-selected.select-arrow-active:after {
	border-color: transparent transparent #FFF transparent;
	top: 7px;
}
.select-items div,.select-selected {
	color: #FFF;
	padding: 10px;
	border: 1px solid transparent;
	border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
	cursor: pointer;
	font-weight: 700;
	user-select: none;
}
.select-items {
	position: absolute;
	background-color: rgba(252, 177, 49, 1);
	top: 100%;
	left: 0;
	right: 0;
	z-index: 99;
	overflow-y: scroll;
    height: 125px;
}
.select-hide {
 	display: none;
}
.select-items div:hover, .same-as-selected {
	background-color: rgba(0, 0, 0, 0.1);
}
.buttonAgegate, .buttonAgegate:hover {
	background-color: rgba(252, 177, 49, 1)!important;
    font-weight: 700;
    margin: 40px auto 0;
    max-width: 300px;
    height: auto;
    padding: 12px 24px;
    color: #FFF;
    text-transform: uppercase;
    border: 2px solid #002063;
    width: 100%;
}
.buttonAgegate:disabled {
	opacity: .7
}

/**
 * Form Validation Errors
 */
.error {
	border-color: red!important;
}
.error-message {
	color: red;
	font-style: italic;
	margin-bottom: 1em;
}
.datefield .error-message {
	display: none;
}

/*SCROLL*/
#scrollup {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    text-indent: -9999px;
    cursor: pointer;
    z-index: 10;
}
#scrollup img {
    display: block;
    width: 100%;
}
/*SCROLL END*/