/**** Helper rules *****/
/* Layout formatting */
.left {
  float: left;
}

.right {
  float: right;
}

.hidden {
  display: none;
}

.offscreen, #sm2-container {
  position: absolute;
  display: block;
  left: -999999px;
  top: -999999px;
}

.text-indent {
  text-indent: -999px;
}

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

/* Image replacement for text */
.ir, .title,
.tablet-name, #section-characters .goodguys .character-name span {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  text-indent: -9999px;
}
.ir:before, .title:before,
.tablet-name:before, #section-characters .goodguys .character-name span:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}

/* Clearfix */
.cf {
  *zoom: 1;
}
.cf:before, .cf:after {
  content: " ";
  display: table;
}
.cf:after {
  clear: both;
}

.fix-pointer::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-right: 140px solid rgba(0, 0, 0, 0);
}

/**** Container Styles ****/
.box-inset {
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: inset -2px 4px 3px -3px rgba(0, 0, 0, 0.2), inset 0px -1px 0px 0px rgba(255, 255, 255, 0.3);
  -moz-box-shadow: inset -2px 4px 3px -3px rgba(0, 0, 0, 0.2), inset 0px -1px 0px 0px rgba(255, 255, 255, 0.3);
  box-shadow: inset -2px 4px 3px -3px rgba(0, 0, 0, 0.2), inset 0px -1px 0px 0px rgba(255, 255, 255, 0.3);
}

.box-rounded, #section-characters .page .text-tablet, #section-power-ups .page-power-ups .power-items a, #section-power-ups .page-power-ups .tablet {
  padding: 25px;
  background-color: white;
  -webkit-border-radius: 15px;
  border-radius: 15px;
}

.tooltip {
  padding: 10px 20px;
  background-color: #383838;
  text-align: center;
  color: #fff;
  display: block;
  pointer-events: none;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

/**** Typo ****/
.title,
.tablet-name {
  height: 38px;
  margin-bottom: 15px;
  background: url("../img/general/spr-titles.png") no-repeat 0 0;
}

.small-text {
  font-size: 0.9em !important;
}

/**** Animation action classes ****/
/* Levitate element */
.levitate {
  	/*.shadow {
  		opacity: 0.8;
  
  		-webkit-animation: fadeInOut 3s infinite linear;
  		        animation: fadeInOut 3s infinite linear;
  
  		@include vendor-property-prefix(transform, scale(0.9));
  		@include vendor-property-prefix(transform-origin, 50% 50%);
  	}*/
}
.levitate .item {
  position: relative;
  -webkit-animation: levitation 3s infinite ease-in-out;
  -ms-animation: levitation 3s infinite ease-in-out;
  -moz-animation: levitation 3s infinite ease-in-out;
  -o-animation: levitation 3s infinite ease-in-out;
  animation: levitation 3s infinite ease-in-out;
}

/* Swing element */
.swing, #section-power-ups .page-become .char-bell:hover .bell {
  -webkit-animation-name: swing;
  -ms-animation-name: swing;
  -moz-animation-name: swing;
  -o-animation-name: swing;
  animation-name: swing;
  -webkit-animation-duration: 0.6s;
  -ms-animation-duration: 0.6s;
  -moz-animation-duration: 0.6s;
  -o-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-transform-origin: 35% 0;
  -ms-transform-origin: 35% 0;
  -moz-transform-origin: 35% 0;
  -o-transform-origin: 35% 0;
  transform-origin: 35% 0;
  -webkit-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
}

/* Small Jump */
.small-jump, #section-power-ups .page-power-ups .power-items a:hover {
  -webkit-animation-name: smallJump;
  -ms-animation-name: smallJump;
  -moz-animation-name: smallJump;
  -o-animation-name: smallJump;
  animation-name: smallJump;
  -webkit-animation-duration: 0.25s;
  -ms-animation-duration: 0.25s;
  -moz-animation-duration: 0.25s;
  -o-animation-duration: 0.25s;
  animation-duration: 0.25s;
  -webkit-animation-timing-function: ease-out;
  -ms-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* Expand Up */
.expand-up {
  -webkit-animation-name: expandUp;
  -ms-animation-name: expandUp;
  -moz-animation-name: expandUp;
  -o-animation-name: expandUp;
  animation-name: expandUp;
  -webkit-animation-duration: 0.4s;
  -ms-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
  -o-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-out;
  -ms-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/**** Video small widget ****/
.media-video {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.media-video:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.media-video.frame {
  border: 7px solid white;
  background-color: white;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.4);
}
.media-video.frame, .media-video.frame img {
  -webkit-border-radius: 7px;
  border-radius: 7px;
}
.media-video .inner, .media-video img, .media-video a {
  display: block;
}
.media-video .inner {
  position: relative;
}
.media-video .inner:before {
  content: " ";
  width: 77px;
  height: 77px;
  margin: -38px 0 0 -38px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: url("../img/general/icon-play.png") 50% 50% no-repeat;
}
.media-video .inner::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-right: 240px solid rgba(0, 0, 0, 0);
}

/**** Carousel Navigation ****/
.section-content .carouselNavWrapper {
  position: absolute;
  width: 240px;
  height: 53px;
  padding: 10px 0 0 17px;
  margin-left: -90px;
  bottom: 35px;
  left: 50%;
  text-align: center;
}
.section-content .carouselNavWrapper.active {
  background: url("../img/general/carousel-nav-wrapper.png") no-repeat 0 0;
}
.section-content .carouselNavWrapper a {
  display: block;
  background-repeat: no-repeat;
}
.section-content .carouselNavWrapper a span {
  display: none;
}
.section-content .carouselNavWrapper .carouselBtnPrev,
.section-content .carouselNavWrapper .carouselPaginationWrap,
.section-content .carouselNavWrapper .carouselBtnNext {
  display: block;
  float: left;
  vertical-align: middle;
}
.section-content .carouselNavWrapper .carouselBtnPrev,
.section-content .carouselNavWrapper .carouselBtnNext {
  width: 40px;
}
.section-content .carouselNavWrapper .carouselBtnPrev:hover,
.section-content .carouselNavWrapper .carouselBtnNext:hover {
  -webkit-animation-name: smallJump;
  -webkit-animation-duration: 0.3s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-fill-mode: none;
  -ms-animation-name: smallJump;
  -ms-animation-duration: 0.3s;
  -ms-animation-timing-function: ease;
  -ms-animation-iteration-count: 1;
  -ms-animation-direction: normal;
  -ms-animation-fill-mode: none;
  -moz-animation-name: smallJump;
  -moz-animation-duration: 0.3s;
  -moz-animation-timing-function: ease;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: normal;
  -moz-animation-fill-mode: none;
  -o-animation-name: smallJump;
  -o-animation-duration: 0.3s;
  -o-animation-timing-function: ease;
  -o-animation-iteration-count: 1;
  -o-animation-direction: normal;
  -o-animation-fill-mode: none;
  animation-name: smallJump;
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.section-content .carouselNavWrapper .carouselBtnPrev a,
.section-content .carouselNavWrapper .carouselBtnNext a {
  height: 48px;
}
.section-content .carouselNavWrapper .carouselBtnPrev.disabled,
.section-content .carouselNavWrapper .carouselBtnNext.disabled {
  opacity: 0.3;
}
.section-content .carouselNavWrapper .carouselBtnPrev.disabled:hover,
.section-content .carouselNavWrapper .carouselBtnNext.disabled:hover {
  -webkit-animation: none;
  -ms-animation: none;
  -moz-animation: none;
  -o-animation: none;
  animation: none;
}
.section-content .carouselNavWrapper .carouselBtnPrev.disabled a,
.section-content .carouselNavWrapper .carouselBtnNext.disabled a {
  cursor: default;
}
.section-content .carouselNavWrapper .carouselBtnPrev {
  margin-right: 5px;
}
.section-content .carouselNavWrapper .carouselBtnPrev a {
  background-position: 0 0;
}
.section-content .carouselNavWrapper .carouselBtnNext a {
  background-position: -147px  0;
}
.section-content .carouselNavWrapper .carouselPaginationWrap {
  margin-top: 6px;
}
.section-content .carouselNavWrapper .carouselPaginationWrap li {
  float: left;
  width: 32px;
}
.section-content .carouselNavWrapper .carouselPaginationWrap li a {
  height: 30px;
  width: 27px;
  background-position: -105px -6px;
}
.section-content .carouselNavWrapper .carouselPaginationWrap li.active a {
  background-position: -58px -6px;
}

/* small back and forth animation */
@-webkit-keyframes slightBackAndForth {
  from {
    -webkit-transform: translateX(8px);
  }

  to {
    -webkit-transform: translateX(-8px);
  }
}

@-moz-keyframes slightBackAndForth {
  from {
    -moz-transform: translateX(8px);
  }

  to {
    -moz-transform: translateX(-8px);
  }
}

@-ms-keyframes slightBackAndForth {
  from {
    -ms-transform: translateX(8px);
  }

  to {
    -ms-transform: translateX(-8px);
  }
}

@keyframes slightBackAndForth {
  from {
    transform: translateX(8px);
  }

  to {
    transform: translateX(-8px);
  }
}

/* Top Jump */
@-webkit-keyframes smallJump {
  0% {
    -webkit-transform: translateY(5%);
  }

  60% {
    -webkit-transform: translateY(-2%);
  }

  100% {
    -webkit-transform: translateY(0%);
  }
}

@keyframes smallJump {
  0% {
    transform: translateY(5%);
  }

  60% {
    transform: translateY(-2%);
  }

  100% {
    transform: translateY(0%);
  }
}

/* Jump */
@keyframes expandUp {
  0% {
    transform: translateY(10%);
  }

  50% {
    transform: translateY(-7%);
  }

  75% {
    transform: translateY(3%);
  }

  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(10%);
  }

  50% {
    -webkit-transform: translateY(-7%);
  }

  75% {
    -webkit-transform: translateY(3%);
  }

  100% {
    -webkit-transform: translateY(0%);
  }
}

/* Levitation */
@-webkit-keyframes levitation {
  0% {
    -webkit-transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(15px);
  }

  100% {
    -webkit-transform: translateY(0);
  }
}

@keyframes levitation {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(15px);
  }

  100% {
    transform: translateY(0);
  }
}

/* FadeInOut */
@-webkit-keyframes fadeInOut {
  0% {
    opacity: 0.8;
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1);
  }

  100% {
    opacity: 0.8;
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0.8;
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0.8;
  }
}

/* Swing */
@-webkit-keyframes swing {
  20%, 40%, 60%, 80%, 100% {
    -webkit-transform-origin: top center;
  }

  20% {
    -webkit-transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    transform: rotate(15deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  60% {
    transform: rotate(5deg);
  }

  80% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

div, span, h1, h2, h3, h4, h5, h6, p, a, em, img, ol, ul, li, fieldset, article, aside, canvas, footer, header, nav, section, time, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-weight: normal;
  vertical-align: baseline;
}

article, aside, footer, header, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

/**** BACKGRUNDS ****/
/* Global */
body {
  background: #3377D3;
  font-family: arial, helvetica, sans-serif;
}

a:link, a:hover, a:active {
  outline: none;
}

/* Specific pages */
#g-nav {
  min-width: 980px;
}

/**** SPRITES ****/
.spr-footer, .footer .social-container h6, .footer .social-icons .at16nc.at16t_facebook, .footer .footer-additional-logos a {
  background: url("../img/general/spr-footer.png") no-repeat;
}

/**** BUY NOW ****/
/**** FONTS ****/
/**** GENERAL LAYOUT CONTAINERS *****/
#section-content-container {
  position: relative;
  width: 100%;
  min-width: 980px;
  height: 780px;
  margin-top: -1px;
  overflow: hidden;
}
#section-content-container::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 8px;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.2);
}
#section-content-container .inner-wrap {
  position: relative;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
#section-content-container #app-preload-icon {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  left: 50%;
  margin-left: -110px;
  width: 221px;
  height: 63px;
  background: url("../img/general/preload-icon.gif") no-repeat 0 0;
}
#section-content-container .bg-radial-gradient {
  opacity: 1;
  position: absolute;
  width: 780px;
  height: 780px;
  top: 60px;
  left: 50%;
  margin-left: -390px;
  z-index: 1;
}
#section-content-container .section-content {
  width: 100%;
}
#section-content-container .section-content section {
  display: none;
  position: relative;
  z-index: 2;
  display: none;
  width: 980px;
  height: 790px;
  margin: 0 auto;
  position: relative;
}
#section-content-container .section-content section .page {
  width: 980px;
  height: 780px;
  position: relative;
}
#section-content-container .section-content section .animated {
  opacity: 0;
}
#section-content-container.power-ups .bg-radial-gradient {
  background: url("../img/general/bg-radial-green.png") no-repeat 0 0;
}
#section-content-container.characters .bg-radial-gradient {
  background: url("../img/general/bg-radial-yellow.png") no-repeat 0 0;
}
#section-content-container.wiiu-gamepad .bg-radial-gradient {
  background: url("../img/general/bg-radial-blue.png") no-repeat 0 0;
}
#section-content-container.story .bg-radial-gradient {
  background: url("../img/general/bg-radial-red.png") no-repeat 0 0;
}
#section-content-container.media-gallery .bg-radial-gradient {
  background: url("../img/general/bg-radial-pink.png") no-repeat 0 0;
}

a:active, a:selected, a:visited {
  border: none;
  outline: none;
}

#pipe {
  position: absolute;
  top: 275px;
  left: 100%;
  width: 100%;
  min-width: 980px;
  height: 167px;
  z-index: 3;
  pointer-events: none;
}
#pipe .left-side, #pipe .right-side {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
#pipe .left-side .left-end, #pipe .left-side .right-end, #pipe .right-side .left-end, #pipe .right-side .right-end {
  position: absolute;
  top: 0;
  width: 160px;
  height: 100%;
  pointer-events: auto;
  -webkit-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
#pipe .left-side .left-end a, #pipe .left-side .right-end a, #pipe .right-side .left-end a, #pipe .right-side .right-end a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 5;
  vertical-align: middle;
  line-height: 158px;
}
#pipe .left-side .left-end a, #pipe .left-side .left-end a:hover, #pipe .left-side .left-end a:active, #pipe .left-side .left-end a:focus, #pipe .left-side .right-end a, #pipe .left-side .right-end a:hover, #pipe .left-side .right-end a:active, #pipe .left-side .right-end a:focus, #pipe .right-side .left-end a, #pipe .right-side .left-end a:hover, #pipe .right-side .left-end a:active, #pipe .right-side .left-end a:focus, #pipe .right-side .right-end a, #pipe .right-side .right-end a:hover, #pipe .right-side .right-end a:active, #pipe .right-side .right-end a:focus {
  outline: none;
  border: none;
  background: transparent;
}
#pipe .left-side .left-end a .label, #pipe .left-side .right-end a .label, #pipe .right-side .left-end a .label, #pipe .right-side .right-end a .label {
  pointer-events: none;
  display: inline-block;
  opacity: 0;
  width: 120px;
  padding: 9px 20px;
  height: auto;
  background: #383838;
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  font-family: 'Lilita One', Verdana, Sans-Serif;
  vertical-align: middle;
  text-align: center;
  -webkit-border-radius: 20px 20px 20px 20px;
  -ms-border-radius: 20px 20px 20px 20px;
  -moz-border-radius: 20px 20px 20px 20px;
  -o-border-radius: 20px 20px 20px 20px;
  border-radius: 20px 20px 20px 20px;
  -webkit-transition: opacity 0.1s linear;
  -ms-transition: opacity 0.1s linear;
  -moz-transition: opacity 0.1s linear;
  -o-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}
html.touch #pipe .left-side .left-end a .label, html.touch #pipe .left-side .right-end a .label, html.touch #pipe .right-side .left-end a .label, html.touch #pipe .right-side .right-end a .label {
  display: none;
}
html.ie9 #pipe .left-side .left-end a .label, html.ie10 #pipe .left-side .left-end a .label, html.ie9 #pipe .left-side .right-end a .label, html.ie10 #pipe .left-side .right-end a .label, html.ie9 #pipe .right-side .left-end a .label, html.ie10 #pipe .right-side .left-end a .label, html.ie9 #pipe .right-side .right-end a .label, html.ie10 #pipe .right-side .right-end a .label {
  display: none;
}
#pipe .left-side .left-end .arrow, #pipe .left-side .right-end .arrow, #pipe .right-side .left-end .arrow, #pipe .right-side .right-end .arrow {
  display: block;
  opacity: 0;
  width: 52px;
  height: 65px;
  position: absolute;
  z-index: 3;
  top: 50px;
  background: url("../img/buttons/buttons-sprite.png") no-repeat 0 0;
  -webkit-transition: opacity 0.1s linear;
  -ms-transition: opacity 0.1s linear;
  -moz-transition: opacity 0.1s linear;
  -o-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
  -webkit-animation-name: slightBackAndForth;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: cubic-bezier(.25,0,.75,1);
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  -webkit-animation-fill-mode: none;
  -ms-animation-name: slightBackAndForth;
  -ms-animation-duration: 0.5s;
  -ms-animation-timing-function: cubic-bezier(.25,0,.75,1);
  -ms-animation-iteration-count: infinite;
  -ms-animation-direction: alternate;
  -ms-animation-fill-mode: none;
  -moz-animation-name: slightBackAndForth;
  -moz-animation-duration: 0.5s;
  -moz-animation-timing-function: cubic-bezier(.25,0,.75,1);
  -moz-animation-iteration-count: infinite;
  -moz-animation-direction: alternate;
  -moz-animation-fill-mode: none;
  -o-animation-name: slightBackAndForth;
  -o-animation-duration: 0.5s;
  -o-animation-timing-function: cubic-bezier(.25,0,.75,1);
  -o-animation-iteration-count: infinite;
  -o-animation-direction: alternate;
  -o-animation-fill-mode: none;
  animation-name: slightBackAndForth;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(.25,0,.75,1);
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-fill-mode: none;
}
html.touch #pipe .left-side .left-end .arrow, html.touch #pipe .left-side .right-end .arrow, html.touch #pipe .right-side .left-end .arrow, html.touch #pipe .right-side .right-end .arrow {
  opacity: 1;
  -webkit-animation: none;
  -ms-animation: none;
  -moz-animation: none;
  -o-animation: none;
  animation: none;
}
html.touch .home #pipe .left-side .left-end .arrow, html.touch .home #pipe .left-side .right-end .arrow, html.touch .home #pipe .right-side .left-end .arrow, html.touch .home #pipe .right-side .right-end .arrow {
  -webkit-animation-name: slightBackAndForth;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: cubic-bezier(.25,0,.75,1);
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  -webkit-animation-fill-mode: none;
  -ms-animation-name: slightBackAndForth;
  -ms-animation-duration: 0.5s;
  -ms-animation-timing-function: cubic-bezier(.25,0,.75,1);
  -ms-animation-iteration-count: infinite;
  -ms-animation-direction: alternate;
  -ms-animation-fill-mode: none;
  -moz-animation-name: slightBackAndForth;
  -moz-animation-duration: 0.5s;
  -moz-animation-timing-function: cubic-bezier(.25,0,.75,1);
  -moz-animation-iteration-count: infinite;
  -moz-animation-direction: alternate;
  -moz-animation-fill-mode: none;
  -o-animation-name: slightBackAndForth;
  -o-animation-duration: 0.5s;
  -o-animation-timing-function: cubic-bezier(.25,0,.75,1);
  -o-animation-iteration-count: infinite;
  -o-animation-direction: alternate;
  -o-animation-fill-mode: none;
  animation-name: slightBackAndForth;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(.25,0,.75,1);
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-fill-mode: none;
}
#pipe .left-side .left-end::after, #pipe .left-side .right-end::after, #pipe .right-side .left-end::after, #pipe .right-side .right-end::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 4;
  top: 0;
  border: none;
  outline: none;
  background: transparent;
}
#pipe .left-side .left-end:hover .arrow, #pipe .left-side .right-end:hover .arrow, #pipe .right-side .left-end:hover .arrow, #pipe .right-side .right-end:hover .arrow {
  opacity: 1;
}
#pipe .left-side .left-end:hover .label, #pipe .left-side .right-end:hover .label, #pipe .right-side .left-end:hover .label, #pipe .right-side .right-end:hover .label {
  opacity: 1;
}
html.ie9 #pipe .left-side .left-end:hover .label, html.ie10 #pipe .left-side .left-end:hover .label, html.ie9 #pipe .left-side .right-end:hover .label, html.ie10 #pipe .left-side .right-end:hover .label, html.ie9 #pipe .right-side .left-end:hover .label, html.ie10 #pipe .right-side .left-end:hover .label, html.ie9 #pipe .right-side .right-end:hover .label, html.ie10 #pipe .right-side .right-end:hover .label {
  display: inline-block;
}
#pipe .left-side .left-end, #pipe .right-side .left-end {
  left: -50px;
  background: url("../img/general/pipe-end-left.png") no-repeat top right;
}
.csstransitions #pipe .left-side .left-end:hover, .csstransitions #pipe .right-side .left-end:hover {
  -webkit-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -o-transform: translateX(50px);
  transform: translateX(50px);
}
#pipe .left-side .left-end a, #pipe .right-side .left-end a {
  padding-right: 30px;
  margin-right: -30px;
}
#pipe .left-side .left-end a .label, #pipe .right-side .left-end a .label {
  -webkit-transform: translateX(120%);
  -ms-transform: translateX(120%);
  -moz-transform: translateX(120%);
  -o-transform: translateX(120%);
  transform: translateX(120%);
}
#pipe .left-side .left-end .arrow, #pipe .right-side .left-end .arrow {
  right: -20px;
  background-position: -75px 0;
}
#pipe .left-side .left-end::after, #pipe .right-side .left-end::after {
  left: 0;
  background: url("../img/general/pipe-end-left-cover.png") no-repeat top right;
}
#pipe .left-side .right-end, #pipe .right-side .right-end {
  right: -50px;
  background: url("../img/general/pipe-end-right.png") no-repeat top left;
}
.csstransitions #pipe .left-side .right-end:hover, .csstransitions #pipe .right-side .right-end:hover {
  -webkit-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -o-transform: translateX(-50px);
  transform: translateX(-50px);
}
#pipe .left-side .right-end a, #pipe .right-side .right-end a {
  padding-left: 30px;
  margin-left: -30px;
}
#pipe .left-side .right-end a .label, #pipe .right-side .right-end a .label {
  -webkit-transform: translateX(-120%);
  -ms-transform: translateX(-120%);
  -moz-transform: translateX(-120%);
  -o-transform: translateX(-120%);
  transform: translateX(-120%);
}
#pipe .left-side .right-end .arrow, #pipe .right-side .right-end .arrow {
  left: -20px;
}
#pipe .left-side .right-end:after, #pipe .right-side .right-end:after {
  right: 0;
  background: url("../img/general/pipe-end-right-cover.png") no-repeat top left;
}
#pipe .left-side {
  right: 100%;
}
#pipe .right-side {
  left: 100%;
}
#pipe .middle {
  position: relative;
  width: 100%;
  height: 100%;
  background: url("../img/general/pipe-slice.png") repeat-x 0 0;
}

@media (max-width: 1120px) {
  #pipe .left-side .left-end, #pipe .left-side .right-end, #pipe .right-side .left-end, #pipe .right-side .right-end {
    width: 80px;
  }
  #pipe .left-side .left-end a .label {
    -webkit-transform: translateX(68%);
    -ms-transform: translateX(68%);
    -moz-transform: translateX(68%);
    -o-transform: translateX(68%);
    transform: translateX(68%);
  }
}
@media (max-width: 980px) {
  #pipe {
    width: 980px;
    left: 150%;
    margin-left: -490px;
  }
  #pipe .left-side .left-end, #pipe .left-side .right-end, #pipe .right-side .left-end, #pipe .right-side .right-end {
    width: 80px;
  }
}
/** special per-section pipe styles **/
#section-content-container.home #pipe .left-side .right-end .arrow {
  opacity: 1;
}

.background-container {
  height: 735px;
  margin: 0 auto;
  overflow: hidden;
  text-align: left;
  width: 960px;
}
.background-container #inner-container {
  width: 3530px;
}
.background-container .background {
  border: 3px solid gray;
  float: left;
  height: 500px;
  width: 700px;
}
.background-container .panel1 {
  background-color: blue;
}
.background-container .panel2 {
  background-color: pink;
}
.background-container .panel3 {
  background-color: green;
}
.background-container .panel4 {
  background-color: purple;
}
.background-container .panel5 {
  background-color: orange;
}

#main-nav {
  height: 200px;
  opacity: 0;
  position: absolute;
  z-index: 3;
  width: 960px;
  top: 30px;
  left: 50%;
  margin-left: -390px;
}
#main-nav h1 {
  left: 0;
  position: absolute;
  top: 0px;
}
#main-nav h1 a {
  background: url(../img/general/main-logo.png) top center no-repeat;
  display: block;
  height: 149px;
  position: relative;
  top: 0;
  width: 240px;
}
#main-nav nav ul {
  margin-left: 245px;
  text-align: center;
}
#main-nav nav ul li {
  height: 54px;
  margin-bottom: 10px;
  display: block;
  float: left;
  cursor: pointer;
}
#main-nav nav ul li a {
  background: url(../img/general/nav-sprite.png) no-repeat 0 -52px;
  display: inline-block;
  height: 54px;
  margin: 0 5px 0;
  position: relative;
  outline: none;
}
#main-nav nav ul li a span {
  width: 100%;
  height: 54px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/general/nav-sprite.png) no-repeat 0 0;
}
#main-nav nav ul li.active span {
  display: none !important;
}
#main-nav nav ul li.nav-story a {
  width: 130px;
}
#main-nav nav ul li.nav-story a span {
  background-position: 0 0;
}
#main-nav nav ul li.nav-characters a {
  width: 177px;
  background-position: -138px -52px;
}
#main-nav nav ul li.nav-characters a span {
  background-position: -138px 0;
}
#main-nav nav ul li.nav-wiiugamepad a {
  width: 185px;
  background-position: -328px -52px;
}
#main-nav nav ul li.nav-wiiugamepad a span {
  background-position: -328px 0;
}
#main-nav nav ul li.nav-powerups a {
  width: 168px;
  margin-left: 56px;
  background-position: -524px -52px;
}
#main-nav nav ul li.nav-powerups a span {
  background-position: -524px 0;
}
#main-nav nav ul li.nav-mediagallery a {
  width: 187px;
  background-position: -702px -52px;
}
#main-nav nav ul li.nav-mediagallery a span {
  background-position: -702px 0;
}

#btn-audio {
  float: left;
  position: relative;
  margin: 0 0 0 7px;
  display: block;
  width: 70px;
  height: 47px;
  background: url("../img/general/nav-sprite.png") no-repeat -900px 0;
}
#btn-audio:hover {
  background-position: -900px -52px;
}
#btn-audio.muted {
  background-position: -975px 0px;
}
#btn-audio.muted:hover {
  background-position: -975px -52px;
}

.confetti {
  background: transparent url(../img/general/nav-confetti.gif) top left no-repeat;
  display: block;
  height: 20px;
  position: absolute;
  width: 20px;
}

.red-confetti {
  background-position: -20px 0;
}

.green-confetti {
  background-position: -60px 0;
}

.yellow-confetti {
  background-position: -40px 0;
}

/* --- Modal Window --- */
div#overlay {
  background-color: #000;
  display: none;
  min-height: 100%;
  left: 0;
  opacity: .7;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999998;
}

.ie8 #overlay {
  background: url("../img/general/modal-overlay.png");
}

div#modal-window {
  background: #fff;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  border-radius: 11px;
  color: #000;
  display: none;
  min-height: 370px;
  margin: 0 auto;
  position: fixed;
  width: 720px;
  z-index: 999999;
}

#btn-modal-close {
  background: transparent url("../img/buttons/modal-close.png") no-repeat 0 0;
  border: none;
  cursor: pointer;
  display: block;
  height: 40px;
  overflow: hidden;
  padding-top: 37px;
  position: absolute;
  right: 0px;
  text-indent: -999px;
  top: 0px;
  width: 40px;
  z-index: 100;
}

.ie8 #btn-modal-close {
  background-image: url("../img/buttons/modal-close-ie8.png");
}

#btn-modal-close:focus,
#btn-modal-close:hover {
  background-position: 0 -40px;
}

div.modal-content {
  display: none;
}

div#modal-window div.modal-content {
  padding: 40px;
  position: relative;
  -webkit-backface-visibility: hidden;
}

div#modal-window div.modal-content div#media-container {
  background-color: #000;
  height: 360px;
}

div.modal-content div.hr {
  border-top: 1px solid #b2b2b2;
  display: block;	
  min-height: 1px;
  padding: 17px 0 0 0;
}

div.modal-content p.hr {
  background: none;
  color: #b2b2b2;
  font-size: 30px;
  font-weight: bold;
  line-height: 30px;
  min-height: 1px;
  padding: 17px 0;
  text-align: center;
  text-shadow: none;
  text-transform: uppercase;
}

div.modal-content p.hr:before {
  border-top: 1px solid #b2b2b2;
  content: '';
  display: block;
  height: 1px;
  margin-bottom: -17px;
  width: 100%;
}

div.modal-content p.hr:after {
  background: #fff;
  content: '';
  display: block;
  height: 40px;
  margin: -35px auto;
  width: 70px;
}

div.modal-content div.option {
  height: 120px;
  overflow: hidden;
  padding: 15px 0 15px 300px;
  position: relative;
}

div.modal-content div.option div.image {
  display: block;
  position: absolute;
  top: 0px;
}

div.modal-content div.option div.boxart {
  background: url("../img/general/modal-boxart.jpg") 0 0 no-repeat;
  left: 60px;
  width: 126px;
  height: 144px;
}


div.modal-content div.option div.bundle {
  background: url("../img/general/bundle.jpg") 0 0 no-repeat;
  height: 156px;
  left: 40px;
  width: 232px;
}

div.modal-content div.option div.hardware {
  background: url("../img/general/wiiu-console.png") 0 0 no-repeat;
  height: 128px;
  left: 20px;
  width: 252px;
}

div.modal-content div.option h2 {
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 30px;
  margin-bottom: 10px;
  text-shadow: none;
  text-transform: none;
  position: relative;
}
div.modal-content div.option h2 div.smaller {
	font-weight: normal;
	font-size: 15px;
}

div#modal-window #buy-now-modal {
	padding: 15px;
}

.carousel-bottom a,
.carousel-bottom a:visited {
  color: #ff8c2d;
}

div.modal-content div.option p {
  text-shadow: none;
}

div.modal-content div.option a {
  color: #ff8c2d;
  font-size: 16px;
  font-weight: normal;
  position: relative;
}

div.modal-content div.option a.eshop {
  background: url("../img/general/modal-eshop.png") 0 0 no-repeat;
  display: inline-block;
  height: 30px;
  text-indent: -99999px;
  width: 200px;
}

div.modal-content ul.country {
  list-style: none;
}

div.modal-content ul.country:after {
     visibility: hidden;
     display: block;
     font-size: 0;
     content: " ";
     clear: both;
     height: 0;
 }

div.modal-content ul.country li {
  float: left;
  height: 65px;
  margin-right: 25px;
  width: 116px;
}

div.modal-content ul.country li a {
  background: transparent url("../img/general/modal-flags.jpg") no-repeat 0 0;
  display: block;
  height: 100%;
  text-indent: -999999px;
}

div.modal-content ul.country li.united-states a {
  background-position: 0 0;
}

div.modal-content ul.country li.canada a {
  background-position: 0 -65px;
}

#footer-upper-tooth {
  background: transparent url(../img/general/footer-tooth-gray3.png) top left repeat-x;
  height: 23px;
  width: 100%;
  min-width: 980px;
  position: relative;
  top: -20px;
  z-index: 10;
}

.footer {
  background: #cd0102 url(../img/general/background-pattern-footer.png) top left repeat;
  min-width: 980px;
  margin-top: -20px;
  padding: 0 0 60px 0;
  width: 100%;
  /* Include Nintendo footer logos */
}
.footer #footer-upper {
  background: url(../img/general/background-pattern.png) white 0px 7px repeat;
  height: 218px;
  width: 100%;
  padding-top: 17px;
  position: relative;
  top: -9px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.footer #footer-upper #footer-upper-content {
  margin: 0 auto;
  padding-left: 70px;
  width: 860px;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper {
  width: 600px;
  position: relative;
  float: left;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper li {
  /* Jump */
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper li a {
  display: block;
  height: 158px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 187px;
  background: url(../img/general/carousel-items-sprite-en.png) 0 0 no-repeat;
  margin-top: 5px;
  -webkit-animation: .3s;
  animation: .3s;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper li a:hover {
  -webkit-animation-name: smallJump;
  animation-name: smallJump;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper li a.ask {
  background-position: 11px 0;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper li a.ask:hover {
  background-position: 11px -154px;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper li a.watch {
  background-position: -178px 0;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper li a.watch:hover {
  background-position: -178px -154px;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper li a.buy {
  background-position: -368px 0;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper li a.buy:hover {
  background-position: -368px -154px;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper li a.more {
  background-position: -937px 0;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper li a.more:hover {
  background-position: -937px -154px;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper li a.maker {
  background-position: -1127px 0;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper li a.maker:hover {
  background-position: -1127px -154px;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper li a.gift-cards {
  background-position: -555px 0;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper li a.gift-cards:hover {
  background-position: -555px -154px;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper li a.remotes {
  background-position: -750px 0;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper li a.remotes:hover {
  background-position: -750px -154px;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper .carouselNavWrapper {
  position: absolute;
  top: 50px;
  width: 700px;
  left: -54px;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper .carouselNavWrapper .carouselBtnPrev {
  position: absolute;
  left: 0;
  width: 54px;
  height: 66px;
  background: url(../img/buttons/buttons-sprite.png) -74px 0 no-repeat;
  cursor: pointer;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper .carouselNavWrapper .carouselBtnNext {
  position: absolute;
  right: 0;
  width: 54px;
  height: 66px;
  background: url(../img/buttons/buttons-sprite.png) 3px 0 no-repeat;
  cursor: pointer;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper .carouselNavWrapper .carouselBtnPrev:hover, .footer #footer-upper #footer-upper-content #main-carousel-wrapper .carouselNavWrapper .carouselBtnNext:hover {
  -webkit-animation-name: smallJump;
  -webkit-animation-duration: 0.3s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-fill-mode: none;
  -ms-animation-name: smallJump;
  -ms-animation-duration: 0.3s;
  -ms-animation-timing-function: ease;
  -ms-animation-iteration-count: 1;
  -ms-animation-direction: normal;
  -ms-animation-fill-mode: none;
  -moz-animation-name: smallJump;
  -moz-animation-duration: 0.3s;
  -moz-animation-timing-function: ease;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: normal;
  -moz-animation-fill-mode: none;
  -o-animation-name: smallJump;
  -o-animation-duration: 0.3s;
  -o-animation-timing-function: ease;
  -o-animation-iteration-count: 1;
  -o-animation-direction: normal;
  -o-animation-fill-mode: none;
  animation-name: smallJump;
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper .carouselNavWrapper .carouselBtnPrev.disabled, .footer #footer-upper #footer-upper-content #main-carousel-wrapper .carouselNavWrapper .carouselBtnNext.disabled {
  opacity: 0.3;
  cursor: default;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper .carouselNavWrapper .carouselBtnPrev.disabled:hover, .footer #footer-upper #footer-upper-content #main-carousel-wrapper .carouselNavWrapper .carouselBtnNext.disabled:hover {
  -webkit-animation: none;
  -ms-animation: none;
  -moz-animation: none;
  -o-animation: none;
  animation: none;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper .carouselNavWrapper .carouselBtnPrev.disabled a, .footer #footer-upper #footer-upper-content #main-carousel-wrapper .carouselNavWrapper .carouselBtnNext.disabled a {
  cursor: default;
}
.footer #footer-upper #footer-upper-content #main-carousel-wrapper .carouselNavWrapper .carouselBtnPrev span,
.footer #footer-upper #footer-upper-content #main-carousel-wrapper .carouselNavWrapper .carouselBtnNext span {
  display: none;
}
.footer #buy-meow {
  float: left;
  margin-left: 40px;
  margin-top: -15px;
}
.footer #buy-meow a {
  height: 184px;
  width: 220px;
  background: url(../img/general/spr-buy-meow.png) top left no-repeat;
  display: block;
  -webkit-animation: .3s;
  animation: .3s;
}
.footer #buy-meow a:hover {
  background-position: -220px 0px;
  -webkit-animation-name: smallJump;
  animation-name: smallJump;
}
.footer #footer-lower {
  background: #00d700 url(../img/general/background-pattern-footer.png) top left repeat;
  min-width: 100%;
  width: 100%;
  position: relative;
  top: -20px;
}
.footer #footer-lower #footer-lower-tooth {
  background: transparent url(../img/general/footer-lower-tooth.png) top left repeat-x;
  height: 20px;
  width: 100%;
  position: relative;
  top: -13px;
}
.footer #legal-container {
  width: 715px;
  margin: 45px auto 0;
  text-align: center;
  color: #c4f1c5;
}
.footer .social-container {
  width: 265px;
  margin: 0 auto 25px;
}
.footer .social-container h6 {
  width: 153px;
  height: 22px;
  margin: 7px 7px 0 0;
  float: left;
  background-position: 0 0;
}
.footer .social-icons {
  width: 90px;
  padding: 6px;
  float: left;
}
.footer .social-icons #share > iframe {
  width: 46px !important;
}
.footer .social-icons .addthis_default_style .at300b,
.footer .social-icons .at16nc.at16t_facebook {
  float: left;
}
.footer .social-icons .at16nc.at16t_facebook {
  width: 24px;
  height: 24px;
  background-position: -162px 0;
}
.footer .social-icons .addthis_button_facebook_like {
  width: 50px;
  overflow: hidden;
  float: left;
  margin-left: 2px;
}
.footer .logo-wrap {
  margin-bottom: 40px;
}
.footer .footer-additional-logos {
  padding-bottom: 16px;
  text-align: center;
  display: block;
  list-style: none;
}
.footer .footer-additional-logos li {
  display: inline-block;
  margin-right: 24px;
}
.footer .footer-additional-logos li.last {
  margin-right: 0;
}
.footer .footer-additional-logos a {
  display: block;
}
.footer .footer-additional-logos a.footer-nintendo-logo {
  width: 131px;
  height: 32px;
  background-position: 0px -26px;
}
.footer .footer-additional-logos a.footer-eshop-logo {
  width: 213px;
  height: 32px;
  background-position: 0px -62px;
}
.footer .footer-additional-logos a.footer-wiiu-logo {
  width: 108px;
  height: 32px;
  background-position: -137px -26px;
}
.footer .bottom-logos {
  position: relative;
}
.footer #footer-clubn-container {
  position: absolute;
  left: 206px;
  top: 20px;
}
.footer #g-footer {
  width: 550px;
  margin: 0 auto;
  padding: 20px 30px 0;
}
.footer #footer-followus-container {
  text-align: center;
  line-height: 2em;
  font-size: 16px;
}
.footer #footer-privacypolicy-container {
  margin-right: 0 !important;
}
.footer .copyright {
  clear: both;
  display: block;
  font: 13px Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: white;
}
.footer .copyright a {
  color: #fff;
}
.footer .copyright p {
  margin-bottom: 1em;
}

#home-background-video-container {
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 788px;
  opacity: 0;
  /* opacity added on page load */
}
#home-background-video-container .poster {
  display: none;
  width: 100%;
  height: 100%;
}

#home-background-video {
  width: 100%;
  height: 100%;
}

/* ----- Homepage Quotes ----- */
.home-quotes {
  width: 665px;
  margin-left: -332px;
  position: absolute;
  bottom: 45px;
  left: 50%;
}
.home-quotes li {
  height: 45px;
  margin-top: 24px;
  margin-right: 40px;
  position: relative;
  bottom: 0;
  float: left;
  opacity: 0;
  background: url("../img/general/spr-quotes.png") no-repeat;
}
.home-quotes li strong {
  display: none;
}
.home-quotes li.quote1 {
  width: 155px;
  background-position: 0 -85px;
}
.home-quotes li.quote2 {
  width: 277px;
  height: 67px;
  margin-top: 0;
  background-position: 0 0;
}
.home-quotes li.quote3 {
  width: 140px;
  margin-right: 0;
  background-position: 0 -148px;
}

#section-characters .page {
  font: normal 20px "Source Sans Pro", sans-serif;
  color: #383838;
}
#section-characters .page > div {
  position: absolute;
}
#section-characters .page .text-tablet {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
#section-characters .page .text-tablet div {
  position: absolute;
}
#section-characters .page .text-tablet .tablet-name {
  font-family: 'Luckiest Guy', cursive;
  font-size: 38px;
  color: white;
  top: -20px;
  left: 12px;
}
#section-characters .page .text-tablet .tablet-desc {
  top: 28px;
  left: 24px;
  width: 260px;
}
#section-characters #video-background {
  background: url("../img/views/characters/video-background.png") no-repeat;
  display: none;
  height: 137px;
  position: absolute;
  left: 50px;
  top: 198px;
  width: 208px;
}
#section-characters #video-background .video-thumb {
  display: none;
  height: 111px;
  left: 15px;
  position: absolute;
  top: 13px;
  width: 179px;
}
#section-characters .goodguys .character-name {
  padding: 14px 22px;
  position: absolute;
  z-index: 3;
  border-radius: 25px;
  background-color: #383838;
  border: 1px solid #5e5e5e;
  border-top-color: #252525;
  border-left-color: #252525;
  -moz-box-shadow: 1px 2px 7px 3px #faf7c3;
  -webkit-box-shadow: 1px 2px 7px 3px #faf7c3;
  box-shadow: 1px 2px 7px 3px #faf7c3;
}
#section-characters .goodguys .character-name span {
  height: 16px;
  display: block;
  background: url("../img/views/characters/spr-char-titles.png") no-repeat;
}
#section-characters .goodguys .character {
  display: block;
  position: absolute;
  outline: none;
}
#section-characters .goodguys .character .char::after, #section-characters .goodguys .character .character-name::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-right: 240px solid rgba(0, 0, 0, 0);
  outline: none;
}
#section-characters .goodguys .character .char {
  display: block;
  -webkit-animation: .3s ease-out;
  animation: .3s ease-out;
}
#section-characters .goodguys .character:hover .char {
  -webkit-animation-name: smallJump;
  animation-name: smallJump;
}
#section-characters .goodguys .character:hover .character-name {
  background-color: #fb3027;
  border: 1px solid #a7201a;
  border-top-color: #fc7b75;
  border-left-color: #fc7b75;
  -moz-box-shadow: 1px 2px 7px 3px #faf7c3;
  -webkit-box-shadow: 1px 2px 7px 3px #faf7c3;
  box-shadow: 1px 2px 7px 3px #faf7c3;
}
#section-characters .goodguys .character.selected .character-name {
  background-color: #fb3027;
  border: 1px solid #a7201a;
  border-top-color: #fc7b75;
  border-left-color: #fc7b75;
  -moz-box-shadow: 1px 2px 7px 3px #faf7c3;
  -webkit-box-shadow: 1px 2px 7px 3px #faf7c3;
  box-shadow: 1px 2px 7px 3px #faf7c3;
}
#section-characters .goodguys .character.peach {
  left: 0px;
  top: 225px;
}
#section-characters .goodguys .character.peach .char {
  height: 419px;
  width: 253px;
  background: url("../img/views/characters/princess-peach.png") no-repeat;
}
#section-characters .goodguys .character.peach .character-name {
  bottom: 49px;
  right: 15px;
}
#section-characters .goodguys .character.peach .character-name span {
  width: 180px;
  background-position: 0 0;
}
#section-characters .goodguys .character.mario {
  left: 240px;
  top: 385px;
}
#section-characters .goodguys .character.mario .char {
  height: 261px;
  width: 218px;
  background: url("../img/views/characters/mario.png") no-repeat;
}
#section-characters .goodguys .character.mario .character-name {
  bottom: -26px;
  right: 80px;
}
#section-characters .goodguys .character.mario .character-name span {
  width: 83px;
  background-position: 0 -21px;
}
#section-characters .goodguys .character.luigi {
  left: 325px;
  top: 161px;
}
#section-characters .goodguys .character.luigi .char {
  height: 486px;
  width: 197px;
  background: url("../img/views/characters/luigi.png") no-repeat;
}
#section-characters .goodguys .character.luigi .character-name {
  bottom: 367px;
  right: -42px;
}
#section-characters .goodguys .character.luigi .character-name span {
  width: 70px;
  background-position: 0 -42px;
}
#section-characters .goodguys .character.toad {
  left: 288px;
  top: 445px;
}
#section-characters .goodguys .character.toad .char {
  height: 226px;
  width: 360px;
  background: url("../img/views/characters/toad.png") no-repeat;
}
#section-characters .goodguys .character.toad .character-name {
  bottom: 29px;
  right: -52px;
}
#section-characters .goodguys .character.toad .character-name span {
  width: 72px;
  background-position: 0 -65px;
}
#section-characters .goodguys .text-tablet {
  height: 272px;
  width: 307px;
  /*left: 640px;
  top: 448px;
  */
  left: 600px;
  top: 247px;
}
#section-characters .goodguys .text-tablet .tablet-name {
  margin-top: 3px;
  width: 310px;
  background-position: 0 -560px;
}
#section-characters .goodguys .text-tablet .tablet-name.mario {
  background-position: 8px -640px;
}
#section-characters .goodguys .text-tablet .tablet-name.luigi {
  background-position: 8px -680px;
}
#section-characters .goodguys .text-tablet .tablet-name.peach {
  background-position: 0 -720px;
}
#section-characters .goodguys .text-tablet .tablet-name.toad {
  background-position: 8px -760px;
}
#section-characters .goodguys .text-tablet .tablet-name.goodguys-default {
  background-position: 8px -562px;
}
#section-characters .bowser-sprixies .character.sprixie-purple {
  height: 113px;
  width: 76px;
  left: 54px;
  top: 155px;
}
#section-characters .bowser-sprixies .character.sprixie-red {
  height: 162px;
  width: 133px;
  left: 112px;
  top: 180px;
}
#section-characters .bowser-sprixies .character.sprixie-orange {
  height: 260px;
  width: 159px;
  left: 18px;
  top: 437px;
}
#section-characters .bowser-sprixies .character.sprixie-green {
  height: 144px;
  width: 104px;
  left: 533px;
  top: 536px;
}
#section-characters .bowser-sprixies .character.sprixie-aqua {
  height: 92px;
  width: 63px;
  left: 605px;
  top: 487px;
}
#section-characters .bowser-sprixies .character.bowser {
  height: 485px;
  width: 464px;
  left: 113px;
  top: 190px;
}
#section-characters .bowser-sprixies .video-player {
  height: 201px;
  width: 256px;
  left: 688px;
  top: 465px;
  position: absolute;
}
#section-characters .bowser-sprixies .text-tablet {
  width: 280px;
  height: 220px;
  left: 590px;
  top: 200px;
}
#section-characters .other-enemies .baddies-bullet {
  height: 159px;
  width: 196px;
  right: 111px;
  top: 146px;
}
#section-characters .other-enemies .baddies-shoe {
  height: 230px;
  width: 276px;
  right: 14px;
  top: 367px;
}
#section-characters .other-enemies .baddies-cat {
  height: 236px;
  width: 314px;
  left: 430px;
  top: 400px;
}
#section-characters .other-enemies .baddies-blue {
  height: 197px;
  width: 240px;
  left: 420px;
  top: 504px;
}
#section-characters .other-enemies .baddies-turtle {
  height: 364px;
  width: 306px;
  left: 14px;
  top: 368px;
}
#section-characters .other-enemies .baddies-bee {
  height: 188px;
  width: 204px;
  left: 67px;
  top: 175px;
}
#section-characters .other-enemies .baddies-desc {
  background: url("../img/views/characters/baddies-title.png") no-repeat;
  height: 250px;
  width: 340px;
  position: absolute;
  left: 330px;
  top: 210px;
  font-size: 20px;
  padding-top: 50px;
  font-family: "Source Sans Pro", sans-serif;
}
#section-characters .carouselNavWrapper {
  padding-left: 35px;
}
#section-characters .carouselNavWrapper a {
  background-image: url("../img/views/characters/character-carousel-sprite.png");
}

#section-power-ups {
  /**** General Elements ****/
  /**** Individual Pages ****/
  /**** Carousel Navigation ****/
}
#section-power-ups .power-ups-pages {
  font: normal 20px "Source Sans Pro", sans-serif;
  color: #383838;
}
#section-power-ups .page {
  padding-top: 175px;
}
#section-power-ups .page .left, #section-power-ups .page .right {
  width: 50%;
  position: relative;
}
#section-power-ups .media-video,
#section-power-ups [class^="char-"] {
  position: absolute;
  display: block;
}
#section-power-ups .page-become .content {
  margin: 35px 100px 30px 15px;
}
#section-power-ups .page-become .title {
  background-position: 0 0;
}
#section-power-ups .page-become .media-video {
  margin-left: 15px;
  position: relative;
  float: left;
}
#section-power-ups .page-become .char-bell {
  width: 142px;
  height: 162px;
  bottom: -55px;
  right: 100px;
}
#section-power-ups .page-become .char-bell .tooltip {
  width: 200px;
  height: auto;
  margin-left: -135px;
  margin-bottom: 20px;
  position: absolute;
  bottom: 100%;
  left: 50%;
  text-decoration: none;
  opacity: 0;
  font-size: .9em;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
}
#section-power-ups .page-become .char-bell .item {
  bottom: 15px;
  display: block;
}
#section-power-ups .page-become .char-bell:hover .tooltip {
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  -ms-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
#section-power-ups .page-become .char-mario {
  top: 65px;
  left: 75px;
}
#section-power-ups .page-clone {
  margin-top: 85px;
}
#section-power-ups .page-clone .title {
  background-position: 0 -40px;
}
#section-power-ups .page-clone .content {
  margin: 0 50px 0 115px;
}
#section-power-ups .page-clone .media-video {
  margin-top: 30px;
  position: relative;
  float: left;
}
#section-power-ups .page-clone .char-cherry {
  bottom: -87px;
  right: 125px;
}
#section-power-ups .page-clone .char-mario-1 {
  top: 0;
  right: 265px;
}
#section-power-ups .page-clone .char-mario-2 {
  top: 10px;
  right: 70px;
}
#section-power-ups .page-power-ups .tablet-name {
  width: 370px;
  margin-top: -45px;
  background-position: 0 -80px;
}
#section-power-ups .page-power-ups .tablet-name.mega-mushroom {
  background-position: 0 -80px;
}
#section-power-ups .page-power-ups .tablet-name.super-star {
  background-position: 0 -120px;
}
#section-power-ups .page-power-ups .tablet-name.super-mushroom {
  background-position: 0 -160px;
}
#section-power-ups .page-power-ups .tablet-name.fire-flower {
  background-position: 0 -200px;
}
#section-power-ups .page-power-ups .tablet-name.boomerang-flower {
  background-position: 0 -240px;
}
#section-power-ups .page-power-ups .tablet-name.super-leaf {
  background-position: 0 -280px;
}
#section-power-ups .page-power-ups .tablet-name.invincibility-leaf {
  background-position: 0 -320px;
}
#section-power-ups .page-power-ups .tablet-name.cannon-box {
  background-position: 0 -360px;
}
#section-power-ups .page-power-ups .tablet-name.propeller-block {
  background-position: 0 -400px;
}
#section-power-ups .page-power-ups .tablet-name.clear-pipe {
  background-position: 0 -600px;
}
#section-power-ups .page-power-ups .tablet-name.power-ups-default {
  background-position: 0 -520px;
}
#section-power-ups .page-power-ups .power-items {
  width: 495px;
  position: absolute;
  top: 45px;
  left: 70px;
}
#section-power-ups .page-power-ups .power-items li {
  display: inline;
}
#section-power-ups .page-power-ups .power-items a {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 15px 15px 0;
  float: left;
  background-color: #50c123;
}
#section-power-ups .page-power-ups .power-items a.selected {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 5px 5px rgba(255, 227, 0, 0.3);
  box-shadow: 0px 0px 5px 5px rgba(255, 227, 0, 0.3);
}
#section-power-ups .page-power-ups .power-items a:hover span, #section-power-ups .page-power-ups .power-items a.selected span {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
#section-power-ups .page-power-ups .power-items a::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-right: 140px solid rgba(0, 0, 0, 0);
}
#section-power-ups .page-power-ups .power-items span {
  width: 165px;
  height: 165px;
  margin: -43px 0 0 -43px;
  display: block;
  background-image: url("../img/views/power-ups/spr-power-ups.png");
  background-repeat: no-repeat;
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -o-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
#section-power-ups .page-power-ups .power-items .super-star span {
  background-position: 0 0;
}
#section-power-ups .page-power-ups .power-items .mega-mushroom span {
  background-position: -165px 0;
}
#section-power-ups .page-power-ups .power-items .super-mushroom span {
  background-position: -330px 0;
}
#section-power-ups .page-power-ups .power-items .fire-flower span {
  background-position: 0 -165px;
}
#section-power-ups .page-power-ups .power-items .boomerang-flower span {
  background-position: -165px -165px;
}
#section-power-ups .page-power-ups .power-items .super-leaf span {
  background-position: -330px -165px;
}
#section-power-ups .page-power-ups .power-items .invincibility-leaf span {
  background-position: 0 -330px;
}
#section-power-ups .page-power-ups .power-items .cannon-box span {
  background-position: -330px -330px;
}
#section-power-ups .page-power-ups .power-items .propeller-block span {
  background-position: -165px -330px;
}
#section-power-ups .page-power-ups .tablet {
  margin: 45px 55px 0 20px;
  position: relative;
  opacity: 0;
  background-color: #fff;
}
#section-power-ups .page-power-ups .char-bottom-pipe {
  position: absolute;
  bottom: 40px;
  right: 105px;
}
#section-power-ups .page-power-ups .char-bottom-pipe img {
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
#section-power-ups .page-power-ups .char-bottom-pipe:hover img {
  -webkit-transform: translateY(-60px);
  -ms-transform: translateY(-60px);
  -moz-transform: translateY(-60px);
  -o-transform: translateY(-60px);
  transform: translateY(-60px);
}
#section-power-ups .carouselNavWrapper a {
  background-image: url("../img/views/power-ups/carousel-sprite.png");
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #section-power-ups .page-power-ups .power-items {
    left: 95px;
  }
  #section-power-ups .page-power-ups .power-items a {
    width: 65px;
    height: 65px;
    margin: 0 15px 15px 0;
  }
  #section-power-ups .page-power-ups .power-items a.selected span, #section-power-ups .page-power-ups .power-items a:hover span {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
  }
  #section-power-ups .page-power-ups .power-items a span {
    margin: -51px 0 0 -51px;
  }
  #section-power-ups .page-power-ups .tablet {
    margin-right: 100px;
    margin-left: 0;
  }
  #section-power-ups .page-power-ups .tablet h2 {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}
#section-wiiu-gamepad .page {
  font: normal 20px "Source Sans Pro", sans-serif;
  color: white;
  		/*#offtv-text {
  			width: 320px;
  			height: 190px;
  			top: 570px;
  			left: 100px;
  			width: 410px;
  
  			h3 {
  				background: url("../img/general/spr-titles.png") 0px -840px no-repeat;
  				height: 40px;
  				width: 400px;
  			}
  		}*/
}
#section-wiiu-gamepad .page > div {
  position: absolute;
}
#section-wiiu-gamepad .page .tv-console {
  width: 427px;
  height: 300px;
  top: 230px;
  left: 75px;
}
#section-wiiu-gamepad .page .tv-console .media-video .inner:before {
  margin-top: -55px;
}
#section-wiiu-gamepad .page .mario {
  width: 118px;
  height: 375px;
  bottom: -122px;
  left: 45px;
}
#section-wiiu-gamepad .page .luigi {
  width: 139px;
  height: 296px;
  bottom: -45px;
  left: 240px;
}
#section-wiiu-gamepad .page .peach {
  width: 117px;
  height: 301px;
  bottom: -46px;
  left: 638px;
}
#section-wiiu-gamepad .page .toad {
  width: 117px;
  height: 338px;
  bottom: -80px;
  left: 826px;
}
#section-wiiu-gamepad .page .hands {
  width: 774px;
  height: 104px;
  bottom: 13px;
  left: 0px;
}
#section-wiiu-gamepad .page .multiplayer-textbox {
  width: 350px;
  height: 190px;
  top: 236px;
  left: 535px;
}
#section-wiiu-gamepad .page .multiplayer-text p {
  margin-top: 20px;
}
#section-wiiu-gamepad .page .multiplayer-text strong {
  color: #000;
}
#section-wiiu-gamepad .page .touchscreen {
  width: 466px;
  height: 284px;
  bottom: -75px;
  left: 564px;
}
#section-wiiu-gamepad .page .touchscreen .media-video {
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
#section-wiiu-gamepad .page .touchscreen .media-video .inner:before {
  margin-top: -98px;
}
#section-wiiu-gamepad .page .tv-playing {
  width: 468px;
  height: 315px;
  top: 220px;
  left: 65px;
  text-align: center;
}
#section-wiiu-gamepad .page .tv-playing img {
  padding-bottom: 35px;
}
#section-wiiu-gamepad .page .gamepad-textbox {
  width: 320px;
  height: 234px;
  top: 220px;
  left: 560px;
}
#section-wiiu-gamepad .page .stamp {
  width: 289px;
  height: 272px;
  top: 220px;
  left: 65px;
}
#section-wiiu-gamepad .page .mario-stamp {
  width: 130px;
  height: 151px;
  top: 320px;
  left: 361px;
}
#section-wiiu-gamepad .page .luigi-stamp {
  width: 120px;
  height: 113px;
  top: 187px;
  left: 750px;
}
#section-wiiu-gamepad .page .peach-stamp {
  width: 87px;
  height: 109px;
  top: 180px;
  left: 361px;
}
#section-wiiu-gamepad .page .toad-stamp {
  width: 72px;
  height: 72px;
  top: 475px;
  left: 288px;
}
#section-wiiu-gamepad .page .handheld-stamp {
  width: 419px;
  height: 222px;
  top: 435px;
  left: 517px;
}
#section-wiiu-gamepad .page .handheld-stamp .media-video .inner:before {
  margin-top: -43px;
}
#section-wiiu-gamepad .page .stamp-it-textbox {
  width: 310px;
  height: 170px;
  top: 520px;
  left: 59px;
}
#section-wiiu-gamepad .page .share-it-textbox {
  width: 244px;
  height: 240px;
  top: 195px;
  left: 502px;
}
#section-wiiu-gamepad .page .share-it-textbox p {
  margin-top: 25px;
}
#section-wiiu-gamepad .carouselNavWrapper a {
  background-image: url("../img/views/wiiu-gamepad/carousel-sprite.png");
}

#section-media-gallery {
  /**** Carousel Navigation ****/
}
#section-media-gallery .title {
  height: 70px;
  margin: 200px auto 8px;
}
#section-media-gallery .title-watch-latest {
  background: url("../img/views/media-gallery/media-gallery-title.png") no-repeat top center;
}
#section-media-gallery .title-memes {
  background: url("../img/views/media-gallery/memes-title.png") no-repeat top center;
}
#section-media-gallery .title-downloads {
  background: url("../img/views/media-gallery/download-title.png") no-repeat top center;
}
#section-media-gallery .media-items {
  margin: 0;
  text-align: center;
}
#section-media-gallery .media-items li {
  display: inline-block;
}
#section-media-gallery .media-items .media-box {
  margin: 0 10px 15px 10px;
  display: inline-block;
  -webkit-animation: .3s ease-out;
  animation: .3s ease-out;
}
#section-media-gallery .media-items .media-box a {
  color: #000;
  font: normal 17px "Source Sans Pro", sans-serif;
  text-decoration: none;
}
#section-media-gallery .media-items .media-box:hover {
  -webkit-animation-name: smallJump;
  animation-name: smallJump;
}
#section-media-gallery .media-items .media-box:hover a {
  color: #f192be;
}
#section-media-gallery .trailer-section .media-box img {
  margin-bottom: 5px;
}
#section-media-gallery .carouselNavWrapper {
  /*&.active {
  	background: url("../img/general/carousel-nav-wrapper-long.png") no-repeat 0 0;
  }*/
}
#section-media-gallery .carouselNavWrapper a {
  background-image: url("../img/views/media-gallery/carousel-sprite.png");
}

#section-story {
  font: normal 20px "Source Sans Pro", sans-serif;
  color: white;
}
#section-story li > div {
  position: absolute;
}
#section-story .sprixie-orange {
  bottom: 36px;
  left: 30px;
}
#section-story .sprixie-jar {
  height: 191px;
  right: 80px;
  top: 195px;
  position: absolute;
  /*
  .shadow {
  	background-position: 0 100%;
  	height: 50px;
  }*/
}
#section-story .sprixie-jar .item {
  width: 149px;
  height: 191px;
  display: block;
  bottom: 15px;
  background: url("../img/views/story/sprixie-jar.png") no-repeat 0 0;
}
#section-story .good-guys {
  right: 80px;
  top: 367px;
}
#section-story .media-video {
  width: 240px;
  bottom: 100px;
  left: 120px;
}
#section-story .textbox {
  width: 360px;
  height: 230px;
  top: 235px;
  left: 80px;
  padding: 50px 0 0 35px;
  background: url("../img/views/story/story-title.png") 35px 0px no-repeat;
}
