* {
  margin: 0px;
  padding: 0px;
}

@font-face {
	font-family: SugoBoldItalic;
	src: url("fonts/SugoProClassicTrial-BoldItalic.ttf") format("truetype"),
			 url("fonts/SugoProClassicTrial-BoldItalic.woff") format("woff"),
       url("fonts/SugoProClassicTrial-BoldItalic.woff2") format("woff2"),
			 url("fonts/SugoProClassicTrial-BoldItalic.eot");
}

@font-face {
	font-family: ProximaBold;
	src: url("fonts/ProximaNova-BlackIt.ttf") format("truetype"),
			 url("fonts/ProximaNova-BlackIt.woff") format("woff"),
       url("fonts/ProximaNova-BlackIt.woff2") format("woff2"),
			 url("fonts/ProximaNova-BlackIt.eot");
}

body {
  position: relative;
  font-family: "SugoBoldItalic", Helvetica, Arial, sans-serif;
  color: #FFF;
  -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
  color: inherit;
}

:focus {outline: none;}

.bgDegrade {
  background: #499dd8;
  background: -moz-radial-gradient(center, ellipse cover, #499dd8 0%, #0354c2 100%);
  background: -webkit-radial-gradient(center, ellipse cover, #499dd8 0%,#0354c2 100%);
  background: radial-gradient(ellipse at center, #499dd8 0%,#0354c2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#499dd8', endColorstr='#0354c2',GradientType=1 );
  background-repeat: no-repeat;
}

#cn-event-header, #cn-event-footer {
  position: relative;
  z-index: 120;
}


/*------- helpers -------*/
.hidden {display: none;}
.flex {display: -webkit-box; display: -ms-flexbox; display: flex;}
.flexRow {-webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row;}
.flexColumn {-webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column;}
.flexAligner {-webkit-box-align: center; -ms-flex-align: center; align-items: center;}
.flexCenter {-webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;}
.flexSpace {-ms-flex-pack: distribute;justify-content: space-around;}
.flexBetween {-webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;}
.posRel {position: relative;}
.onlyMob {display: none;}
/*------- finish helpers -------*/

/*------- rollover effects -------*/
.rollGral {
  position: relative;
  overflow: hidden;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  cursor: pointer;
}
.rollGral:hover {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}

/* Shine */
.rollGral::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}

.rollMenu::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(88, 185, 255, 0) 0%, rgba(88, 185, 255, 0.5) 100%);
	background: linear-gradient(to right, rgba(88, 185, 255, 0) 0%, rgba(88, 185, 255, 0.5) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}

.rollGral:hover::before, .rollMenu:hover::before, .videoRoll:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
/*------- finish rollover -------*/

.popup, .popupContainer {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1000;
}

.popupContainer {
  background-color: rgba(0, 0, 0, 0.5);
}

.popNotice {
  max-width: calc(400px - 40px);
  width: 100%;
  padding: 20px;
  background-color: #FFF;
  color: #333;
  text-align: center;
  border-radius: 10px;
}

.popNotice p {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.btnPopup {
  padding: 5px 20px;
  color: #FFF;
  background-color: #136bb1;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.btnPopup:hover {
  background-color: #469ee3;
  box-shadow: 0px 4px 3px rgba(0,0,0,0.4);
}

/*----------- preloader -----------*/
#preloader {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 200;
}

.loadingContainer {
  max-width: 300px;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
}

.bgStars {
  width: 100%;
  height: 488px;
  background: url("../assets/images/bg_stars.png");
  background-size: 100%;
  position: absolute;
  -webkit-animation: linear bgMove 10s infinite;
  animation: linear bgMove 10s infinite;
  z-index: 1;
}

@-webkit-keyframes bgMove {
  from {background-position: 0px 0px;}
  to {background-position: 0px -488px;}
}

@keyframes bgMove {
  from {background-position: 0px 0px;}
  to {background-position: 0px -488px;}
}

.transparent {
  -webkit-mask-image: -webkit-linear-gradient(top, transparent 0%, black 75%, transparent 100%, black 80%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 75%, transparent 100%, black 80%);
}

.logoLoading {
  width: 100%;
  min-height: 150px;
  background: url("../assets/images/logo_loading.png") no-repeat;
  background-position: center top;
  background-size: contain;
  position: relative;
  z-index: 10;
}

.logoAcademic {
  width: 400px;
  height: 210px;
  margin: 0 auto;
  background: url("../assets/images/logo_academic.png") no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 70px;
  left: -100px;
  z-index: 10;
}

.txtLoading {
  width: 70%;
  height: 80px;
  margin: 0 auto;
  background: url("../assets/images/txtLoading.png") no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
  z-index: 10;
}

.bar {
  width: 75%;
  height: 40px;
  margin: 0 auto;
  margin-top: 90px;
  border: 5px solid #76a7ff;
  border-radius: 12px;
  background-image: repeating-linear-gradient(-45deg, #ffc70b, #ffc70b 11px, #ffeabb 10px, #ffeabb 20px);
  background-size: 28px 28px;
  animation: move .5s linear infinite;
  box-shadow: 0px 10px 0px rgba(0,0,0,0.7);
  position: relative;
  z-index: 10;
}

@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 28px 0;
  }
}
/*------- preloader helpers -------*/


#sectionContainer {
  min-height: calc(100vh - 140px);
  margin-bottom: 20px;
  position: relative;
  z-index: 90;
}

.navTop {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 100;
}

.navTop ul {
  list-style-type: none;
}

.navTop ul li {
  cursor: pointer;
}

.logoNav {
  width: 230px;
  height: 140px;
  background: url("../assets/images/menu/logoMenu.png") no-repeat;
  background-position: center;
  background-size: contain;
  overflow: hidden;
}

.iconNav {
  width: 140px;
  height: 130px;
  position: relative;
  overflow: hidden;
}

.iconNav.btnProducts {
  background: url("../assets/images/menu/btn_products.png") no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.active .iconNav.btnProducts,
.iconNav.btnProducts:hover {
  background: url("../assets/images/menu/btn_productsHov.png") no-repeat;
  background-position: center;
  background-size: contain;
}

.iconNav.btnGames {
  background: url("../assets/images/menu/btn_games.png") no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.active .iconNav.btnGames,
.iconNav.btnGames:hover {
  background: url("../assets/images/menu/btn_gamesHov.png") no-repeat;
  background-position: center;
  background-size: contain;
}

.iconNav.btnCharacters {
  background: url("../assets/images/menu/btn_characters.png") no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.active .iconNav.btnCharacters,
.iconNav.btnCharacters:hover {
  background: url("../assets/images/menu/btn_charactersHov.png") no-repeat;
  background-position: center;
  background-size: contain;
}

.btnVideo {
  width: 190px;
  height: 130px;
  background: url("../assets/images/menu/btn_videos.png") no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  overflow: hidden;
}
.active .btnVideo,
.btnVideo:hover {
  background: url("../assets/images/menu/btn_videosHov.png") no-repeat;
  background-position: center;
  background-size: contain;
}

.navTop ul div span {
  width: 100%;
  position: absolute;
  bottom: 8px;
  text-align: center;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: -2px 2px 0px #000;
}

.bgHome {
  width: 100%;
  min-height: 100vh;
  background: url("../assets/images/bgHome.png") no-repeat;
  background-position: center bottom;
  background-size: cover;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1;
}

.container {
  width: calc(100% - 40px);
  max-width: 950px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  opacity: 0;
  position: relative;
  z-index: 10;
  top: 10px;
}

.imgSide {
  width: 28%;
  height: 100vh;
  position: absolute;
  top: -80px;
  z-index: 1;
}

.imgSide.left {left: -10%; opacity: 0;}
.imgSide.right {right: -10%; opacity: 0;}

.imgSide img {max-width: 100%;}

.supergirlSide0 {
  background: url("../assets/images/sideCharacters/supergirl.png") no-repeat;
  background-position: right;
  background-size: cover;
}

.wonderwomanSide {
  background: url("../assets/images/sideCharacters/wonderwoman.png") no-repeat;
  background-position: left;
  background-size: cover;
}

.batigirlSide {
  background: url("../assets/images/sideCharacters/batigirl.png") no-repeat;
  background-position: right bottom;
  background-size: 507px;
  height: 670px;
  width: 350px;
  top: -150px;
}

.starfireSide {
  background: url("../assets/images/sideCharacters/starfire.png") no-repeat;
  background-position: left;
  background-size: contain;
}

.bumbleBeeSide {
  background: url("../assets/images/sideCharacters/bumbleBee.png") no-repeat;
  background-position: left;
  background-size: cover;
}

.supergirlSide1 {
  background: url("../assets/images/sideCharacters/supergirl1.png") no-repeat;
  background-position: right top;
  background-size: cover;
}

.harleySide {
  background: url("../assets/images/sideCharacters/harley.png") no-repeat;
  background-position: left;
  background-size: cover;
}

.supergirlSide3 {
  background: url("../assets/images/sideCharacters/supergirl3.png") no-repeat;
  background-position: right top;
  background-size: cover;
}

.poisonSide {
  background: url("../assets/images/sideCharacters/poison.png") no-repeat;
  background-position: left top;
  background-size: cover;
}
/*----- home -----*/
.accPlayGame {
  width: 90%;
  height: 280px;
  margin: 0 auto;
  background: url("../assets/images/home/acc_playGame.png") no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
  cursor: pointer;
}

.accPlayGame .txtContent {
  position: absolute;
  bottom: 40px;
  left: 40px;
  text-transform: uppercase;
  line-height: 37px;
  letter-spacing: 1px;
}

.accPlayGame .txtContent .first {font-size: 2rem; position: relative; left: 18px;}
.accPlayGame .txtContent .second {font-size: 2.5rem; position: relative; left: 10px; text-shadow: -3px 3px 0px #000;}
.accPlayGame .txtContent .three {font-size: 4.2rem; text-shadow: -3px 3px 0px #000;}

.btnPlay {
  font-size: 2rem;
  padding: 5px 40px;
  cursor: pointer;
}

.btn {
  background: url("../assets/images/btn_bg.png") no-repeat;
  background-position: center;
  background-size: contain;
}

.accCharacters {
  width: 48%;
  height: 240px;
  background: url("../assets/images/home/acc_characters.png") no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
  cursor: pointer;
}

.accCharacters .txtContent {
  position: absolute;
  bottom: 23px;
  right: 43px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.accCharacters .txtContent .first {font-size: 1.5rem; line-height: 0px;}
.accCharacters .txtContent .second {font-size: 3rem; text-shadow: -3px 3px 0px #000;}
.accCharacters .txtContent .three {font-size: 3rem; line-height: 20px; text-shadow: -3px 3px 0px #000;}

.accVideos {
  width: 48%;
  height: 240px;
  background: url("../assets/images/home/acc_videos.png") no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
  cursor: pointer;
}

.accVideos .txtContent {
  position: absolute;
  bottom: 23px;
  left: 48px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.accVideos .txtContent .first {font-size: 1.5rem; line-height: 0px;}
.accVideos .txtContent .second {font-size: 3rem; text-shadow: -3px 3px 0px #000;}
.accVideos .txtContent .three {font-size: 3rem; line-height: 20px; text-shadow: -3px 3px 0px #000;}

/*----- pruducts -----*/
.thumbProduct {
  width: 200px;
  height: 200px;
  position: relative;
}

.thumbProduct.product1 {
  background: url("../assets/images/home/thumb_batiGirl.png") no-repeat;
  background-position: center;
  background-size: contain;
}

.thumbProduct.product2 {
  background: url("../assets/images/home/thumb_poison.png") no-repeat;
  background-position: center;
  background-size: contain;
}

.thumbProduct.product3 {
  background: url("../assets/images/home/thumb_supergirl.png") no-repeat;
  background-position: center;
  background-size: contain;
}

.thumbProduct.product4 {
  background: url("../assets/images/home/thumb_wonderWoman.png") no-repeat;
  background-position: center;
  background-size: contain;
}

.thumbProduct .tagName {
  width: 95%;
  padding: 12px 0px;
  text-align: center;
  position: absolute;
  bottom: 12px;
  background: url("../assets/images/btn_bg.png") no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.thumbProduct:hover .tagName {
  opacity: 1;
}

.thumbProduct .tagName span {
  font-size: 1.3rem;
  letter-spacing: 1px;
  font-family: "SugoBoldItalic", Helvetica, Arial, sans-serif;
  text-shadow: -2px 2px 0px #000;
}


.arrowLeft {
  width: 60px;
  height: 60px;
  background: url("../assets/images/icon_arrowLeft.png") no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 80px;
  left: 0px;
  z-index: 10;
  cursor: pointer;
}

.arrowRight {
  width: 60px;
  height: 60px;
  background: url("../assets/images/icon_arrowRight.png") no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 80px;
  right: 0px;
  z-index: 10;
  cursor: pointer;
}

/*----- pruducts -----*/
.card {
  width: 300px;
  height: 370px;
  position: relative;
}

.card.product1 {
  background: url("../assets/images/products/supergirl.png") no-repeat;
  background-position: center;
  background-size: contain;
}

.card.product2 {
  background: url("../assets/images/products/batgirl.png") no-repeat;
  background-position: center;
  background-size: contain;
}

.card.product3 {
  background: url("../assets/images/products/wonderwoman.png") no-repeat;
  background-position: center;
  background-size: contain;
}

.card .tagName {
  width: 95%;
  padding: 16px 0px;
  text-align: center;
  position: absolute;
  bottom: 12px;
  background: url("../assets/images/products/tagName.png") no-repeat;
  background-position: center;
  background-size: contain;
  transition: background 0.3s ease-in-out;
}

.card:hover .tagName {
  background: url("../assets/images/products/tagNameHov.png") no-repeat;
  background-position: center;
  background-size: contain;
}

.card .tagName span {
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-family: "ProximaBold", Helvetica, Arial, sans-serif;
  -webkit-text-stroke: 1px #000;
  text-shadow:
      2px  2px 0 #000,
     -1px -1px 0 #000,
      1px -1px 0 #000,
     -1px  1px 0 #000,
      1px  1px 0 #000;
}

.btnLeft {
  width: 60px;
  height: 60px;
  background: url("../assets/images/icon_arrowLeft.png") no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 150px;
  left: 20px;
  z-index: 10;
  cursor: pointer;
}

.btnRight {
  width: 60px;
  height: 60px;
  background: url("../assets/images/icon_arrowRight.png") no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 150px;
  right: 0px;
  z-index: 10;
  cursor: pointer;
}

.boardLink {
  width: 100%;
  padding: 55px 0px 25px 0px;
  text-align: center;
  background: url("../assets/images/products/boardLink.png") no-repeat;
  background-position: center;
  background-size: contain;
}

.boardLink span {
  font-size: 1.8rem;
  letter-spacing: 1px;
  text-shadow: -2px 2px 0px #000;
}

.gameContainer, .gameCharacters {
  width: 90%;
  margin: 0 auto;
  border: 5px solid #FFF;
  position: relative;
}

.gameContainer img {
  max-width: 100%;
  display: block;
}

/*------- characters -------*/
.titleCharacter {
  width: 100%;
  height: 60px;
  padding-top: 30px;
  text-align: center;
  font-size: 1.6rem;
  font-family: "ProximaBold", Helvetica, Arial, sans-serif;
  -webkit-text-stroke: 1px #000;
  text-shadow:
      2px  2px 0 #000,
     -1px -1px 0 #000,
      1px -1px 0 #000,
     -1px  1px 0 #000,
      1px  1px 0 #000;
  text-transform: uppercase;
  background: url("../assets/images/characters/titleContainer.png") no-repeat;
  background-position: center;
  background-size: 76%;
  position: absolute;
  z-index: 20;
}

.bgHomeCharacters {
  width: 100%;
  height: 520px;
  background: url("../assets/images/characters/bgHome.jpg") no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.harley {
  width: 19%;
  height: 360px;
  background: url("../assets/images/characters/harley.png") no-repeat;
  background-position: center bottom;
  background-size: contain;
  position: absolute;
  bottom: 30px;
  left: 1%;
  z-index: 7;
}
.harley:hover {
  background: url("../assets/images/characters/harleyBorder.png") no-repeat;
  background-position: center bottom;
  background-size: contain;
  z-index: 11;
}

.frost {
  width: 20%;
  height: 390px;
  background: url("../assets/images/characters/frost.png") no-repeat;
  background-position: center bottom;
  background-size: contain;
  position: absolute;
  bottom: 15px;
  left: 16%;
  z-index: 8;
}
.frost:hover {
  background: url("../assets/images/characters/frostBorder.png") no-repeat;
  background-position: center bottom;
  background-size: contain;
  z-index: 11;
}

.supergirl {
  width: 28%;
  height: 400px;
  background: url("../assets/images/characters/supergirl.png") no-repeat;
  background-position: center bottom;
  background-size: contain;
  position: absolute;
  bottom: 1px;
  left: 26%;
  z-index: 9;
}
.supergirl:hover {
  background: url("../assets/images/characters/supergirlBorder.png") no-repeat;
  background-position: center bottom;
  background-size: contain;
  z-index: 11;
}

.wonderwoman {
  width: 34%;
  height: 444px;
  background: url("../assets/images/characters/wonderwoman.png") no-repeat;
  background-position: center bottom;
  background-size: contain;
  position: absolute;
  bottom: 0px;
  left: 39%;
  z-index: 10;
}
.wonderwoman:hover {
  background: url("../assets/images/characters/wonderwomanBorder.png") no-repeat;
  background-position: center bottom;
  background-size: contain;
  z-index: 11;
}

.batigirl {
  width: 33%;
  height: 250px;
  background: url("../assets/images/characters/batigirl.png") no-repeat;
  background-position: center bottom;
  background-size: contain;
  position: absolute;
  bottom: -2px;
  left: 49%;
  z-index: 9;
}
.batigirl:hover {
  background: url("../assets/images/characters/batigirlBorder.png") no-repeat;
  background-position: center bottom;
  background-size: contain;
  z-index: 11;
}

.starfire {
  width: 22%;
  height: 390px;
  background: url("../assets/images/characters/starfire.png") no-repeat;
  background-position: center bottom;
  background-size: contain;
  position: absolute;
  bottom: 10px;
  left: 65%;
  z-index: 8;
}
.starfire:hover {
  background: url("../assets/images/characters/starfireBorder.png") no-repeat;
  background-position: center bottom;
  background-size: contain;
  z-index: 11;
}

.poison {
  width: 25%;
  height: 370px;
  background: url("../assets/images/characters/poison.png") no-repeat;
  background-position: center bottom;
  background-size: contain;
  position: absolute;
  bottom: 10px;
  left: 76%;
  z-index: 7;
}
.poison:hover {
  background: url("../assets/images/characters/poisonBorder.png") no-repeat;
  background-position: center bottom;
  background-size: contain;
  z-index: 11;
}

.tagCharacter {
  width: 250px;
  padding: 13px 0px 22px 0px;
  margin-top: 10px;
  text-align: center;
  font-size: 1.4rem;
  font-family: "ProximaBold", Helvetica, Arial, sans-serif;
  -webkit-text-stroke: 1px #000;
  text-shadow:
      2px  2px 0 #000,
     -1px -1px 0 #000,
      1px -1px 0 #000,
     -1px  1px 0 #000,
      1px  1px 0 #000;
  text-transform: uppercase;
  background: url("../assets/images/characters/tagName.png") no-repeat;
  background-position: center bottom;
  background-size: contain;
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.revealName {
  cursor: pointer;
}

.revealName:hover .tagCharacter {
  opacity: 1;
  margin-top: 0px;
}

.btnGoBack {
  padding: 2px 15px;
  background-color: #155ec1;
  border-radius: 20px;
  border: 1px solid #FFF;
  position: absolute;
  left: 10px;
  top: 10px;
  box-shadow: 0px 3px 3px rgba(0,0,0,0.3);
  cursor: pointer;
}

/*----------- space of Wonderwoman ----------*/
.bgWonderwoman {
  width: 100%;
  height: 520px;
  background: url("../assets/images/characters/wonderWoman/bgWonderwoman.jpg") no-repeat;
  background-position: center bottom;
  background-size: cover;
  overflow: hidden;
}

.item {
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.item:hover {
  margin-bottom: 5px;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.tooltip {
  padding: 20px 15px;
  width: 200px;
  background-color: #FFCC18;
  border-radius: 10px;
  font-family: "ProximaBold", Helvetica, Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #000;
  border: 2px solid #FFF;
  position: absolute;
  top: -100px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.item:hover .tooltip {opacity: 1; top: -130px; visibility: visible;}
.tooltip h4 {font-size: 1.2rem;}
.tooltip p {font-size: 0.9rem; margin-top: 10px;}

.tooltip::before {
  content: '';
  position: absolute;
  bottom: -17.4px;
  left: 30px;
  width: 30px;
  height: 30px;
  background-color: #ffcb18;
  transform: rotate(45deg);
  border-bottom: 2px solid #FFF;
  border-right: 2px solid #FFF;
}

.toolCrown {
  left: -13px !important;
}

.toolTie {
  left: -50px;
}

.toolTie.tooltip::before {
  left: 65px;
}

#discoverWonderwoman .element1 {
  width: 80px;
  height: 60px;
  background: url("../assets/images/characters/wonderWoman/brazalet.png") no-repeat;
  background-position: center;
  background-size: contain;
  bottom: 21%;
  left: 0%;
  z-index: 20;
}

#discoverWonderwoman .element1:hover {
  background: url("../assets/images/characters/wonderWoman/brazaletHover.png") no-repeat;
  background-position: center;
  background-size: contain;
}

#discoverWonderwoman .element2 {
  width: 120px;
  height: 170px;
  background: url("../assets/images/characters/wonderWoman/shield.png") no-repeat;
  background-position: center;
  background-size: contain;
  bottom: 12%;
  left: 15%;
  z-index: 10;
}

#discoverWonderwoman .element2:hover {
  background: url("../assets/images/characters/wonderWoman/shieldHover.png") no-repeat;
  background-position: center;
  background-size: contain;
}

#discoverWonderwoman .element3 {
  width: 60px;
  height: 34px;
  background: url("../assets/images/characters/wonderWoman/corone.png") no-repeat;
  background-position: center;
  background-size: contain;
  bottom: 35%;
  right: 42%;
  z-index: 10;
}
#discoverWonderwoman .element3:hover {
  background: url("../assets/images/characters/wonderWoman/coroneHover.png") no-repeat;
  background-position: center;
  background-size: contain;
}

#discoverWonderwoman .element4 {
  width: 70px;
  height: 120px;
  background: url("../assets/images/characters/wonderWoman/tie.png") no-repeat;
  background-position: center;
  background-size: contain;
  bottom: 18%;
  right: 16%;
  z-index: 20;
}
#discoverWonderwoman .element4:hover {
  background: url("../assets/images/characters/wonderWoman/tieHover.png") no-repeat;
  background-position: center;
  background-size: contain;
}
/*------- finish space of Wonderwoman -------*/


/*----- video interactive -----*/
.txtVideoInteractive {
  width: 40%;
  padding: 16px 0px;
  text-align: center;
  background: url("../assets/images/videos/txtVideoInteractive.png") no-repeat;
  background-position: center;
  background-size: contain;
}

.txtVideoInteractive span {
  font-size: 2rem;
}

.txtChoiseFinish {
  width: 58%;
  padding: 12px 0px 19px 0px;
  text-align: center;
  background: url("../assets/images/videos/txtChoiseFinish.png") no-repeat;
  background-position: center;
  background-size: contain;
}

.txtChoiseFinish span {
  font-size: 1.3rem;
}

.scrollContainer {
  margin-top: 20px;
  position: relative;
  z-index: 10;
}
.scroll {
  width: 100%;
  height: 330px;
  overflow: auto;
  overflow-y: hidden;
  margin: 0 auto;
  white-space: nowrap
}

.scroll::-webkit-scrollbar {
  opacity: 0;
}

.paddingLeft {
  padding-left: 10%;
}

.paddingRight {
  padding-right: 10%;
}

.videoContainer {
  width: 530px;
  height: 280px;
  border: 6px solid #FFF;
  -webkit-transform: skew(-6deg);
  -moz-transform: skew(-6deg);
  -ms-transform: skew(-6deg);
  -o-transform: skew(-6deg);
  transform: skew(-6deg);
  overflow: hidden;
  background: #0759a8;
  background: -moz-linear-gradient(left, #0759a8 0%, #00b7e6 100%);
  background: -webkit-linear-gradient(left, #0759a8 0%,#00b7e6 100%);
  background: linear-gradient(to right, #0759a8 0%,#00b7e6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0759a8', endColorstr='#00b7e6',GradientType=1 );
  box-shadow: -8px 8px 0px rgba(0,0,0,0.5)
}

.videoThumb {
  width: 200px;
  height: 124px;
  margin-left: 50px;
  margin-right: 10px;
  border: 6px solid #FFF;
  -webkit-transform: skew(-6deg);
  -moz-transform: skew(-6deg);
  -ms-transform: skew(-6deg);
  -o-transform: skew(-6deg);
  transform: skew(-6deg);
  box-shadow: -8px 8px 0px rgba(0,0,0,0.5);
  cursor: pointer;
}

.videoThumb.colorDegrade {
  background: #0759a8;
  background: -moz-linear-gradient(left, #0759a8 0%, #00b7e6 100%);
  background: -webkit-linear-gradient(left, #0759a8 0%,#00b7e6 100%);
  background: linear-gradient(to right, #0759a8 0%,#00b7e6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0759a8', endColorstr='#00b7e6',GradientType=1 );
}

.videoThumb.active {
  background: #163655 !important;
  background: -moz-linear-gradient(left, #163655 0%, #14596a 100%) !important;
  background: -webkit-gradient(left top, right top, color-stop(0%, #163655), color-stop(100%, #14596a)) !important;
  background: -webkit-linear-gradient(left, #163655 0%, #14596a 100%) !important;
  background: -o-linear-gradient(left, #163655 0%, #14596a 100%) !important;
  background: -ms-linear-gradient(left, #163655 0%, #14596a 100%);
  background: linear-gradient(to right, #163655 0%, #14596a 100%) !important;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#163655', endColorstr='#14596a', GradientType=1 );
}

.videoThumb.secondThumb {
  margin-top: 20px;
  position: relative;
  left: -15px;
}

.videoRoll {
  position: relative;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  cursor: pointer;
}

/* Shine */
.videoRoll::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}


.videoThumb img, .videoContainer img {
  width: 90px;
}

@media (max-width: 1000px) {
  .imgSide {display: none;}
}

@media (max-width: 900px) {
  .onlyDesk, #cn-event-header, #cn-event-footer {display: none;}
  .onlyMob {display: block;}

  /*----------- menu ------------*/
  .sidenav {
    width: 0;
    height: 100%;
    font-family: 'ProximaBold';
    text-shadow: -2px 2px 0px #000;
    background-color: #FFF;
    overflow-x: hidden;
    transition: 0.5s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
  }

  .sidenav .btnLink {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #FFF;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
  }

  .sidenav .btnLink:hover {
    color: #f1f1f1;
  }

  .sidenav .closebtn {
    width: 36px;
    text-align: center;
    border-radius: 50%;
    font-size: 36px;
    background-color: #8e00f3;
    position: absolute;
    top: 5px;
    right: 25px;
    cursor: pointer;
    z-index: 10;

  }

  .sidenav .btnLink {
    height: calc(25vh - 16px);
  }

  .btnLink span {
    position: absolute;
    bottom: 10px;
  }

  .bgRed {background-color: #e3181c;}
  .bgViolet {background-color: #8d0bef;}
  .bgOrange {background-color: #ffa600;}
  .bgBlue {background-color: #004ec5;}

  .iconProducts {
    width: 130px;
    height: 100%;
    background: url("../assets/images/menu/iconProducts.png") no-repeat;
    background-position: bottom;
    background-size: contain;
    position: absolute;
    bottom: 0px;
    right: 0px;
  }

  .iconVideo {
    width: 130px;
    height: 100%;
    background: url("../assets/images/menu/iconVideo.png") no-repeat;
    background-position: bottom;
    background-size: contain;
    position: absolute;
    bottom: 0px;
    right: 0px;
  }

  .iconGame {
    width: 130px;
    height: 100%;
    background: url("../assets/images/menu/iconGame.png") no-repeat;
    background-position: bottom;
    background-size: contain;
    position: absolute;
    bottom: 0px;
    right: 0px;
  }

  .iconCharacters {
    width: 130px;
    height: 100%;
    background: url("../assets/images/menu/iconCharacters.png") no-repeat;
    background-position: bottom;
    background-size: contain;
    position: absolute;
    bottom: 0px;
    right: 0px;
  }

  .logoMenuside {
    width: 113px;
    height: 67px;
    background: url("../assets/images/menu/logoMenu.png") no-repeat;
    background-position: right;
    background-size: cover;
    position: absolute;
    top: 5px;
    left: 20px;
    z-index: 20;
  }
  /*-------- menu finish --------*/

  .navTop ul {-ms-flex-pack: distribute; justify-content: space-around;}
  .logoNav {
    position: relative;
    left: -24px;
  }
  .btnMenu {
    width: 50px;
    height: 40px;
    background: url("../assets/images/menu/btnMenu.png") no-repeat;
    background-position: center;
    background-size: contain;
  }

  .container {
    width: 100%;
    padding: 0px;
  }

  /*------------------------*/
  .accGameMob {
    width: 100%;
    height: 125px;
    border-top: 4px solid #FFF;
    background: url("../assets/images/home/bgAccGame.jpg") no-repeat;
    background-position: left;
    background-size: contain;
    background-color: #FFA600;
    position: relative;
  }
  .charactersGame {
    width: 187px;
    height: 170px;
    background: url("../assets/images/home/charactersGame.png") no-repeat;
    background-position: left;
    background-size: cover;
    position: absolute;
    top: -45px;
    right: 0;
    z-index: 10;
  }
  .btnPlay {font-size: 1.3rem;}
  .accGameMob .txtContent,
  .accVideoMob .txtContent {
    width: 80%;
    padding-left: 20px;
    padding-top: 7px;
    text-transform: uppercase;
    text-shadow: 2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
    position: relative;
    z-index: 20;
  }
  .accGameMob .txtContent .second {font-size: 1.3rem;}
  .accGameMob .txtContent .three {font-size: 2rem;}
  /*------------------------*/

  /*------------------------*/
  .accCharacMob {
    width: 100%;
    height: 125px;
    border-top: 4px solid #FFF;
    background: url("../assets/images/home/bgAccCharacters.jpg") no-repeat;
    background-position: right;
    background-size: contain;
    background-color: #E3181C;
    position: relative;
  }
  .character {
    width: 270px;
    height: 170px;
    background: url("../assets/images/home/character.png") no-repeat;
    background-position: right;
    background-size: cover;
    position: absolute;
    top: -45px;
    left: 0px;
    z-index: 10;
  }

  .accCharacMob .txtContent {
    width: calc(100% - 20px);
    padding-right: 20px;
    padding-top: 7px;
    text-align: right;
    text-transform: uppercase;
    text-shadow: 2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
    position: relative;
    z-index: 20;
  }
  .accCharacMob .txtContent .first,
  .accVideoMob .txtContent .first {font-size: 1.3rem;}
  .accCharacMob .txtContent .second,
  .accCharacMob .txtContent .three,
  .accVideoMob .txtContent .second,
  .accVideoMob .txtContent .three {font-size: 3rem; line-height: 40px;}
  /*------------------------*/

  /*------------------------*/
  .accVideoMob {
    width: 100%;
    height: 125px;
    border-top: 4px solid #FFF;
    border-bottom: 4px solid #FFF;
    background: url("../assets/images/home/bgAccVideos.jpg") no-repeat;
    background-position: left;
    background-size: contain;
    background-color: #8D0BEF;
    position: relative;
  }

  .characterVideo {
    width: 187px;
    height: 170px;
    background: url("../assets/images/home/characterVideos.png") no-repeat;
    background-position: left;
    background-size: cover;
    position: absolute;
    top: -45px;
    right: 0;
    z-index: 10;
  }
  /*------------------------*/

  .btnRight {
    right: 20px;
  }

  .boardLink {
    padding: 35px 0px 25px 0px;
  }
  .boardLink span {
    font-size: 0.7rem;
  }

  /*------------------------*/
  .scroll {
    margin-top: 17px;
  }
  .txtVideoInteractive {
    width: 200px;
    position: absolute;
    left: 0px;
    z-index: 12;
    top: -10px;
  }
  .txtVideoInteractive span {
    font-size: 1.2rem;
  }
  .txtChoiseFinish {
    width: 100%;
  }
  .txtChoiseFinish span {
    font-size: 1rem
  }
  /*------------------------*/

  .wonderwoman {
    width: 30%;
  }
  .bgHomeCharacters {
    min-height: 500px;
    height: auto;
  }
  .titleCharacter {
    padding: 0px;
    height: 50px;
    font-size: 1.4rem;
  }
  .titleCharacter span {
    margin-top: 10px;
    display: block;
  }
}

@media (orientation: portrait) {
  .titleCharacter {
    background-size: cover;
    height: 80px;
  }
  .titleCharacter span {
    margin-top: 15px;
  }
  .bgHomeCharacters {
    min-height: 320px;
  }

  .harley, .frost, .supergirl, .wonderwoman, .batigirl, .poison, .starfire {
    height: 180px;
  }
}
