@font-face {
  font-family: 'AgencyFBBold';
  src: url("./fonts/AgencyFBBold.woff2") format("woff2"), url("./fonts/AgencyFBBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-stretch: condensed;
  unicode-range: U+0020-02DC;
  font-display: auto;
}
@font-face {
  font-family: 'AgencyFB';
  src: url("./fonts/AgencyFB.woff2") format("woff2"), url("./fonts/AgencyFB.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-stretch: condensed;
  unicode-range: U+0020-02DC;
  font-display: auto;
}
@font-face {
  font-family: 'AgencyWGLBlackExtended';
  src: url("./fonts/AgencyWGLBlackExtended.woff2") format("woff2"), url("./fonts/AgencyWGLBlackExtended.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-00FE;
  font-display: auto;
}
* {
  outline: 0px none !important;
}

html {
  touch-action: manipulation;
}

.hide {
  display: none;
}

.flickity-slider {
  z-index: 1;
}

html, body, #page-wrap, #preloader {
  overflow: hidden;
  height: 746px;
}

body {
  background: #000;
}

.popup-overlay .productos-wrap {
  opacity: 0;
  transition: all  400ms ease-in-out;
}

#productos .popup-overlay.loaded .productos-wrap {
  opacity: 1;
}

#page-wrap {
  position: relative;
}

.movie .preload-movie {
  display: block;
}

.preload-movie {
  position: absolute;
  z-index: 110;
  top: 0;
  right: 0%;
  width: 100%;
  height: 100%;
  opacity: 1;
  display: none;
}
.preload-movie .preload-top {
  content: " ";
  position: absolute;
  z-index: 9;
  top: 0;
  right: 0%;
  width: 100%;
  height: 100%;
  background: url(../assets/images/preload_movie_top.png) no-repeat scroll 50% 0% transparent;
  background-size: auto 100%;
}
.preload-movie .preload-bottom {
  content: " ";
  position: absolute;
  z-index: 10;
  bottom: 0;
  right: 0%;
  width: 100%;
  height: 100%;
  background: url(../assets/images/preload_movie_bottom.png) no-repeat scroll 50% 100% transparent;
  background-size: auto 100%;
}
.preload-movie .preload-movie-wrap {
  max-width: 950px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 60%;
  z-index: 15;
  transform: translateY(-50%) translateX(-50%);
  width: 18.7%;
}
.preload-movie .preload-moovie-logo {
  background: url(../assets/images/logo_jl.png) no-repeat scroll 50% 50% transparent;
  background-size: contain;
  padding-bottom: 83%;
  height: 0;
  width: 100%;
  position: relative;
}
.preload-movie .preload-moovie-logo::after {
  content: " ";
  position: absolute;
  z-index: 1;
  top: 105%;
  right: 0%;
  width: 100%;
  display: block;
  animation: 1000ms linear flash infinite;
  left: 0%;
  overflow: hidden;
  background: url(../assets/images/cargando.png) no-repeat scroll 50% 50% transparent;
  background-size: contain;
}
.preload-movie.animate .preload-top {
  animation: 2000ms linear 400ms slideOutUp 1 forwards;
}
.preload-movie.animate .preload-bottom {
  animation: 2000ms linear 400ms slideOutDown 1 forwards;
}
.preload-movie.animate .preload-moovie-logo {
  animation: 400ms linear fadeOut 1 forwards;
}

.preload {
  position: absolute;
  z-index: 110;
  top: 0;
  right: 0%;
  width: 1920px;
  height: 100%;
  left: 50%;
  opacity: 1;
  margin-left: -960px;
}
.preload .preload-left {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: url(../assets/images/preload_left.png) no-repeat scroll 100% 50% transparent;
  background-size: auto 100%;
  padding-right: 6.1%;
}
.preload .preload-right {
  position: absolute;
  z-index: 10;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url(../assets/images/preload_right.png) no-repeat scroll 0 50% transparent;
  background-size: auto 100%;
  padding-left: 6.1%;
}
.preload .preload-text {
  position: absolute;
  z-index: 12;
  bottom: 22%;
  right: 0%;
  display: block;
  animation: 1000ms linear flash infinite;
  width: 206px;
  height: 0px;
  padding-bottom: 1.3%;
  text-indent: -999px;
  left: 50%;
  margin-left: -103px;
  overflow: hidden;
  background: url(../assets/images/cargando.png) no-repeat scroll 50% 50% transparent;
  background-size: contain;
}
.preload.animate .preload-left {
  animation: 2000ms linear 400ms slideOutLeft 1 forwards;
}
.preload.animate .preload-right {
  animation: 2000ms linear 400ms slideOutRight 1 forwards;
}
.preload.animate .preload-text {
  animation: 400ms linear fadeOut 1 forwards;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.container {
  max-width: 950px;
  width: 100%;
}

#videos {
  background: url(../assets/images/background_trailer.jpg) no-repeat scroll 50% 0% transparent;
  background-size: cover;
  position: relative;
}

#juego {
  background: url(../assets/images/background_game.jpg) no-repeat scroll bottom center transparent;
  background-size: cover;
  position: relative;
}

.selector-heroes {
  position: absolute;
  z-index: 22;
  bottom: 0;
  right: 241px;
  width: 221px;
  margin-right: -221px;
  height: auto;
  opacity: 1;
  background: url(../assets/images/selector_current.png) no-repeat scroll 0 24px transparent;
  transition: all  400ms ease-in-out;
}
.selector-heroes.catalogo {
  background: transparent;
}
.selector-heroes.catalogo .selector-carousel {
  opacity: 0;
}
.selector-heroes.close {
  transform: translate3d(0, 385px, 0);
}
.selector-heroes.ng-hide {
  opacity: 0;
}

.selector-all {
  background: url(../assets/images/selector_all.png) no-repeat scroll 0 0 transparent;
  width: 100%;
  height: 378px;
  position: relative;
}
.selector-all .btn-vamos {
  bottom: 30px;
  top: initial;
  width: 144px;
  height: 35px;
  background-size: 100%;
  margin-left: -72px;
  font-size: 13px;
  line-height: 38px;
}

.selector-carousel {
  width: 100%;
  height: 298px;
  position: relative;
  transition: all  400ms ease-in-out;
}
.selector-carousel .flickity-slider {
  transform: none !important;
}
.selector-carousel .carousel-cell {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 9px;
  padding-top: 252px;
  padding-left: 15px;
  padding-right: 25px;
  box-sizing: border-box;
  left: 0 !important;
  opacity: 0;
  transition: opacity 400ms ease-in-out;
  z-index: -1;
}
.selector-carousel .carousel-cell.is-selected {
  opacity: 1;
  z-index: 0;
}
.selector-carousel .carousel-cell img {
  position: absolute;
  top: 9px;
  z-index: 10;
  height: 209px;
  width: auto;
  left: 51%;
  transform: translateX(-50%);
}
.selector-carousel .carousel-cell span {
  font-family: 'AgencyWGLBlackExtended';
  font-size: 13px;
  line-height: 1.2;
  color: #010b45;
  text-align: center;
  display: block;
}
.selector-carousel .carousel-cell span span {
  font-size: 50%;
  vertical-align: top;
  padding: 2px;
  display: inline;
}
.selector-carousel .btn-share {
  content: " ";
  position: absolute;
  z-index: 12;
  top: 204px;
  left: 50%;
  width: 52px;
  margin-left: -26px;
  overflow: hidden;
  text-indent: -999px;
  display: block;
  height: 40px;
  background: url(../assets/images/share-option.png) no-repeat scroll 0 0 transparent;
}
.selector-carousel .btn-share:hover {
  animation: 400ms ease-in-out pulse infinite;
}
.selector-carousel .flickity-prev-next-button {
  width: 54px;
  height: 54px;
  top: 58%;
  z-index: 10;
}
.selector-carousel .flickity-prev-next-button::before {
  background-image: url(../assets/images/arrows_selector.png);
}
.selector-carousel .flickity-prev-next-button.previous {
  left: 10px;
}
.selector-carousel .flickity-prev-next-button.next {
  right: 10px;
}

.juego-wrap {
  height: 100%;
  max-width: 950px;
  margin: 0 auto;
  position: relative;
}
.juego-wrap::after {
  content: " ";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 81%;
  background: url(../assets/images/game_heroes.png) no-repeat scroll 50% 0 transparent;
  background-size: contain;
}

.btn-comenzar {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 50%;
  margin-left: -117px;
  width: 189px;
  height: 52px;
  background: url(../assets/images/btn_comenzar.png) no-repeat scroll 0 0 transparent;
}
.btn-comenzar:hover {
  animation: 400ms ease-in-out pulse infinite;
}

#catalogo, #descargas {
  background: url(../assets/images/background.jpg) no-repeat scroll bottom center transparent;
  background-size: cover;
  position: relative;
}
#catalogo::before, #descargas::before {
  content: " ";
  position: absolute;
  z-index: 2;
  top: 1%;
  left: 0;
  width: 484px;
  height: 100%;
  background: url(../assets/images/catalogo_left.png) no-repeat scroll bottom left transparent;
  background-size: contain;
  opacity: 0;
}
#catalogo::after, #descargas::after {
  content: " ";
  position: absolute;
  z-index: 1;
  top: 14%;
  right: 0;
  width: 350px;
  height: 100%;
  background: url(../assets/images/catalogo_right.png) no-repeat scroll bottom right transparent;
  background-size: contain;
  opacity: 0;
}
#catalogo.active::before, .active#descargas::before, #catalogo.active::after, .active#descargas::after {
  animation: 400ms ease-in-out 1600ms fadeIn 1 forwards;
}

.descargas-carousel-wrap {
  height: 100%;
  width: 550px;
  margin: 0 auto;
  padding-bottom: 135px;
  padding-top: 100px;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}

.descargas-carousel {
  height: 100%;
  width: 100%;
}
.descargas-carousel .carousel-cell {
  height: 100%;
  width: 100%;
}
.descargas-carousel .hero, .descargas-carousel .product2, .descargas-carousel .product {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.descargas-carousel .hero img, .descargas-carousel .product2 img, .descargas-carousel .product img {
  display: inline-block;
  max-height: 100%;
  width: auto;
}

.descargas-selector {
  position: absolute;
  bottom: 26px;
  left: 0;
  height: 128px;
  width: 100%;
  z-index: 12;
}
.descargas-selector .descargas-prev {
  position: absolute;
  z-index: 3;
  bottom: 23px;
  left: 10px;
  height: 91px;
  width: 214px;
  background: url(../assets/images/btnPrev.png) no-repeat scroll 0 0 transparent;
  transition: all 400ms ease-in-out;
}
.descargas-selector .descargas-prev:hover {
  transform: translateX(-40px);
}
.descargas-selector .descargas-prev img {
  display: block;
  height: 70%;
  width: auto;
  margin-top: 7%;
  margin-left: 35%;
}
.descargas-selector .descargas-next {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  right: 0;
  height: 91px;
  width: 214px;
  background: url(../assets/images/btnNext.png) no-repeat scroll 0 0 transparent;
  transition: all 400ms ease-in-out;
}
.descargas-selector .descargas-next:hover {
  transform: translateX(40px);
}
.descargas-selector .descargas-next img {
  display: block;
  height: 70%;
  width: auto;
  margin-top: 7%;
  margin-left: 20%;
}
.descargas-selector .descargas-current {
  position: absolute;
  z-index: 5;
  bottom: 0;
  width: 305px;
  left: 50%;
  margin-left: -152px;
  height: 100%;
  background: url(../assets/images/descargas_current.png) no-repeat scroll 0 0 transparent;
}
.descargas-selector .descargas-current img {
  display: block;
  height: 55%;
  width: auto;
  margin-top: 7%;
  margin-left: auto;
  margin-right: auto;
}

.descargas-carousel {
  position: relative;
}
.descargas-carousel::before {
  content: " ";
  position: absolute;
  z-index: 11;
  top: 40px;
  left: -48px;
  width: 222px;
  height: 88px;
  background: url(../assets/images/heroReleased.png) no-repeat scroll 0 0 transparent;
}
.descargas-carousel.nonlocked::before {
  content: none;
  display: none;
}

.descargas-open {
  position: absolute;
  z-index: 12;
  top: 150px;
  left: -77px;
  width: 108px;
  height: 108px;
  background: url(../assets/images/btnDownloadUnlocked.png) no-repeat scroll 0 0 transparent;
}

.locked .descargas-open {
  cursor: pointer;
  width: 465px;
  background: url(../assets/images/btnDownloadlocked.png) no-repeat scroll 0 0 transparent;
}
.locked .descargas-open::before {
  content: " ";
  position: absolute;
  z-index: 11;
  bottom: -7%;
  left: 36%;
  width: 37%;
  height: 0;
  padding-bottom: 9%;
  background: url(../assets/images/btnJugar.png) no-repeat scroll 50% 50% transparent;
  background-size: contain;
}
.locked .descargas-open:hover::before {
  animation: 400ms ease-in-out pulse infinite;
}

.locked.descargas-carousel::before {
  background: url(../assets/images/heroBlocked.png) no-repeat scroll 0 0 transparent;
}

.descargar-wrap {
  width: 700px;
  margin-left: -350px;
  height: 80%;
  position: absolute;
  bottom: 11%;
  left: 50%;
}
.descargar-wrap header {
  font-family: 'AgencyWGLBlackExtended';
  position: absolute;
  z-index: 12;
  top: 50px;
  left: 50%;
  margin-left: -291px;
  width: 582px;
  height: 48px;
  background: url(../assets/images/titileContainer.png) no-repeat scroll 0 0 transparent;
}
.descargar-wrap header h3 {
  font-size: 20px;
  color: #010b45;
  margin: 0;
  line-height: 48px;
  text-align: center;
  display: block;
}
.descargar-wrap header .close {
  color: #fff;
  font-size: 23px;
  position: absolute;
  z-index: 1;
  right: -55px;
  top: 0;
  text-decoration: none;
  height: 100%;
  line-height: 48px;
  display: block;
  width: 55px;
  text-align: right;
}

.descargar-carousel {
  padding-bottom: 100%;
  position: absolute;
  z-index: 10;
  top: 50px;
  left: 0;
  width: 100%;
  height: 0;
  background: url(../assets/images/bgcontainer.png) no-repeat scroll 0 0 transparent;
  background-size: 100%;
}
.descargar-carousel .flickity-viewport {
  position: absolute;
  z-index: 1;
  width: 100%;
}
.descargar-carousel .flickity-slider {
  transform: none !important;
}
.descargar-carousel .carousel-cell {
  height: 100%;
  width: 100%;
  padding: 9%;
  box-sizing: border-box;
  left: 0 !important;
  opacity: 1;
  z-index: -1;
}
.descargar-carousel .carousel-cell.is-selected {
  opacity: 1;
  z-index: 0;
}
.descargar-carousel .carousel-cell .product-thumb {
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.descargar-carousel .print {
  position: absolute;
  z-index: 22;
  top: 55%;
  right: -10px;
  width: 92px;
  height: 92px;
  background: url(../assets/images/btnPrint.png) no-repeat scroll 50% 50% transparent;
}
.descargar-carousel .print:hover {
  animation: 400ms ease-in-out pulse;
}
.descargar-carousel .download {
  position: absolute;
  z-index: 23;
  top: 74%;
  right: 10%;
  width: 108px;
  height: 108px;
  background: url(../assets/images/btnDownloadUnlocked.png) no-repeat scroll 50% 50% transparent;
}
.descargar-carousel .download:hover {
  animation: 400ms ease-in-out pulse;
}
.descargar-carousel .flickity-prev-next-button {
  width: 69px;
  height: 69px;
  top: 46%;
  z-index: 11;
}
.descargar-carousel .flickity-prev-next-button::before {
  background-image: url(../assets/images/arrows3.png);
}
.descargar-carousel .flickity-prev-next-button.previous {
  left: 0;
}
.descargar-carousel .flickity-prev-next-button.next {
  right: 0;
}

.home-wrap, .descargas-wrap {
  height: 100%;
  max-width: 950px;
  margin: 0 auto;
  opacity: 0;
  position: relative;
  z-index: 10;
}
.home-wrap::after, .descargas-wrap::after {
  content: " ";
  position: absolute;
  z-index: 1;
  top: -12%;
  left: 50%;
  margin-left: -432px;
  width: 864px;
  height: 864px;
  background: url(../assets/images/lightBg.png) no-repeat scroll 50% 50% transparent;
  background-size: 100%;
  animation: 5s linear rotation infinite;
}
.home-wrap::before, .descargas-wrap::before {
  content: " ";
  position: absolute;
  z-index: 2;
  top: -12%;
  left: 50%;
  margin-left: -432px;
  width: 864px;
  height: 864px;
  background: url(../assets/images/lightBg2.png) no-repeat scroll 50% 50% transparent;
  background-size: 100%;
  animation: 5s linear rotation infinite;
  animation-direction: reverse;
}

#home {
  background: url(../assets/images/background.jpg) no-repeat scroll bottom center transparent;
  background-size: cover;
  position: relative;
}
#home .heroes_home {
  content: " ";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/images/heroes_home.png) no-repeat scroll 50% 100% transparent;
  background-size: auto 85%;
  opacity: 0;
  display: block;
}
#home .batman_home {
  content: " ";
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/images/batman_home.png) no-repeat scroll 50% 100% transparent;
  background-size: auto 85%;
  opacity: 0;
  display: block;
}
#home.active .busqueda-implacable {
  animation: 400ms ease-in-out 2400ms fadeIn 1 forwards;
}
#home.active .batman_home {
  animation: 400ms ease-in-out 1200ms fadeIn 1 forwards;
}
#home.active .heroes_home {
  animation: 400ms ease-in-out 1800ms fadeIn 1 forwards;
}

.active .home-wrap, .active .descargas-wrap {
  animation: 400ms ease-in-out 800ms fadeIn 1 forwards;
}

.busqueda-implacable {
  position: absolute;
  z-index: 40;
  bottom: 79px;
  left: -93px;
  width: 249px;
  height: auto;
  opacity: 0;
}
.busqueda-implacable span {
  color: #fff;
  font-size: 25px;
  line-height: 1;
  font-family: 'AgencyFBBold';
  font-weight: 700;
  text-align: center;
  display: block;
  padding-bottom: 250px;
  background: url(../assets/images/accessGame1.png) no-repeat scroll bottom center transparent;
}

.btn-vamos {
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 50%;
  margin-left: -90px;
  font-family: 'AgencyWGLBlackExtended';
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  line-height: 46px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  width: 181px;
  height: 44px;
  background: url(../assets/images/btnWatch.png) no-repeat scroll 0 0 transparent;
}
.btn-vamos:hover {
  animation: 400ms ease-in-out pulse infinite;
}

#productos {
  background: url(../assets/images/background_sections.jpg) no-repeat scroll bottom center transparent;
  background-size: cover;
}
#productos::before {
  content: " ";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 491px;
  height: 100%;
  background: url(../assets/images/productos_left.png) no-repeat scroll 0 0 transparent;
}
#productos::after {
  content: " ";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 599px;
  height: 100%;
  background: url(../assets/images/productos_right.png) no-repeat scroll 0 0 transparent;
}

#movie-descargas {
  background: url(../assets/images/background_sections.jpg) no-repeat scroll bottom center transparent;
  background-size: auto 100%;
}
#movie-descargas::before {
  content: " ";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 609px;
  height: 100%;
  background: url(../assets/images/poster_left.png) no-repeat scroll 0 0 transparent;
  background-size: cover;
}
#movie-descargas::after {
  content: " ";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 528px;
  height: 100%;
  background: url(../assets/images/poster_right.png) no-repeat scroll 0 0 transparent;
  background-size: cover;
}

.main-navigation {
  transition: opacity  400ms ease-in-out;
}
.main-navigation.ng-hide {
  opacity: 0;
}

.menu-back {
  width: 124px;
  height: 50px;
  background: url(../assets/images/btnGoBack.png) no-repeat scroll 0 0 transparent;
  position: absolute;
  overflow: hidden;
  text-indent: -999px;
  z-index: 105;
  top: 40px;
  right: -40px;
  display: none;
}

.has-movie .menu-back {
  display: block;
}

.main-navigation-movie, .main-navigation-serie {
  width: 1168px;
  height: 74px;
  background: url(../assets/images/header.png) no-repeat scroll 0 0 transparent;
  position: absolute;
  z-index: 18;
  left: 50%;
  top: 0;
  margin-left: -584px;
}
.main-navigation-movie::before, .main-navigation-serie::before {
  content: " ";
  position: absolute;
  z-index: 101;
  top: 15px;
  left: 70px;
  width: 67px;
  height: 67px;
  background: url(../assets/images/logoMattel.png) no-repeat scroll 0 0 transparent;
}
.main-navigation-movie .menu-logo, .main-navigation-serie .menu-logo {
  position: absolute;
  z-index: 100;
  top: 0;
  overflow: hidden;
  text-indent: -999px;
  left: 7%;
  width: 249px;
  padding-bottom: 13.36%;
  height: 0;
  background: url(../assets/images/logoMovie.png) no-repeat scroll 0 0 transparent;
  background-size: 100%;
}
.main-navigation-movie .main-navigation-menu, .main-navigation-serie .main-navigation-menu {
  position: relative;
  margin-left: 321px;
  margin-top: 40px;
  width: 782px;
  height: 55px;
  overflow: visible;
  display: block;
}
.main-navigation-movie .main-navigation-menu li, .main-navigation-serie .main-navigation-menu li {
  list-style: none;
  height: 52px;
  z-index: 11;
  overflow: hidden;
  display: block;
  width: 286px;
  position: absolute;
  top: 0;
  transition: background-image 400ms ease-in-out;
  background-repeat: no-repeat;
  background-position: 50% 0;
}
.main-navigation-movie .main-navigation-menu li a, .main-navigation-serie .main-navigation-menu li a {
  transition: all 400ms ease-in-out;
  transform: scale(0.8);
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  background-repeat: no-repeat;
  background-position: 50% 53%;
}
.main-navigation-movie .main-navigation-menu li:hover, .main-navigation-serie .main-navigation-menu li:hover, .main-navigation-movie .main-navigation-menu li.active, .main-navigation-serie .main-navigation-menu li.active {
  background-position: 50% 100%;
}
.main-navigation-movie .main-navigation-menu li:hover a, .main-navigation-serie .main-navigation-menu li:hover a, .main-navigation-movie .main-navigation-menu li.active a, .main-navigation-serie .main-navigation-menu li.active a {
  animation: 400ms ease-in-out pulseMenu 1 forwards;
}

.main-navigation-serie {
  width: 1132px;
  height: 114px;
  background: url(../assets/images/serie_header.png) no-repeat scroll 0 0 transparent;
  z-index: 99;
  left: 50%;
  margin-left: -556px;
}
.main-navigation-serie::before {
  top: 15px;
  left: 50px;
  width: 67px;
  height: 67px;
  background: url(../assets/images/logoMattel.png) no-repeat scroll 0 0 transparent;
}
.main-navigation-serie .menu-logo {
  top: 8%;
  left: 12.2%;
  width: 183px;
  padding-bottom: 9.5%;
  height: 0;
  background: url(../assets/images/logoJla.png) no-repeat scroll 0 0 transparent;
}
.main-navigation-serie .main-navigation-menu {
  margin-left: 344px;
  margin-top: 29px;
  width: 782px;
  height: 55px;
}
.main-navigation-serie .main-navigation-menu li {
  height: 59px;
  width: 178px;
  background-image: url(../assets/images/menu_serie.png);
  background-position: 50% 0;
  background-size: 100%;
}
.main-navigation-serie .main-navigation-menu li a {
  height: 26px;
  background-size: auto 200%;
  background-position: 50% 0;
  transition: none;
  margin-top: 15px;
}
.main-navigation-serie .main-navigation-menu li:hover a, .main-navigation-serie .main-navigation-menu li.active a {
  background-position: 50% 100% !important;
  animation: 400ms ease-in-out pulseMenu 1 forwards;
}
.main-navigation-serie.has-movie .main-navigation-menu li {
  height: 50px;
  width: 152px;
}
.main-navigation-serie.has-movie .main-navigation-menu li a {
  height: 22px;
  background-size: auto 200%;
  background-position: 50% 0;
  transition: none;
  margin-top: 13px;
}

.menu-movie-volver {
  display: none !important;
}

.menu-movie-videos {
  left: 0;
  width: 282px;
  background-image: url(../assets/images/menu_videos.png);
  z-index: 103;
}
.menu-movie-videos a {
  background-image: url(../assets/images/videos.png);
}

.menu-movie-catalogo {
  left: 248px;
  width: 286px;
  background-image: url(../assets/images/menu_productos.png);
  z-index: 102;
}
.menu-movie-catalogo a {
  background-image: url(../assets/images/productos.png);
}

.menu-movie-descargas {
  left: 499px;
  width: 278px;
  background-image: url(../assets/images/menu_descargas.png);
  z-index: 101;
}
.menu-movie-descargas a {
  background-image: url(../assets/images/descargas.png);
}

.menu-the-movie {
  left: 486px;
  display: none !important;
}
.menu-the-movie a {
  background: url(../assets/images/theMovie.png) no-repeat scroll 50% 53% transparent;
}

.has-movie .menu-the-movie {
  display: block !important;
}

.has-movie .menu-juego {
  left: 0;
}

.menu-juego {
  left: 20px;
}
.menu-juego a {
  background: url(../assets/images/juego.png) no-repeat scroll 50% 53% transparent;
}

.has-movie .menu-descargas {
  left: 324px;
}

.menu-descargas {
  left: 233px;
}
.menu-descargas a {
  background: url(../assets/images/downloads.png) no-repeat scroll 50% 53% transparent;
}

.has-movie .menu-catalogo {
  left: 162px;
}

.menu-catalogo {
  left: 456px;
}
.menu-catalogo a {
  background: url(../assets/images/catalogo.png) no-repeat scroll 50% 53% transparent;
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.popup-overlay .main-navigation-movie, .popup-overlay .main-navigation-serie {
  background: none;
}

.popup-overlay .main-navigation-serie {
  background: url(../assets/images/containerLogo.png) no-repeat scroll 11.8% 0 transparent;
  background-size: auto 100%;
}

.legal {
  width: 252px;
  height: 20px;
  background: url(../assets/images/legal.png) no-repeat scroll 0 0 transparent;
  position: absolute;
  z-index: 11;
  bottom: 3px;
  right: 15px;
  text-indent: -999px;
  overflow: hidden;
  display: block;
}

.serie .legal {
  width: 301px;
  margin-right: -160px;
  right: 50%;
  height: 20px;
  background: url(../assets/images/legal_jl.png) no-repeat scroll 0 0 transparent;
}

#sectionContainer, .mainContainer, .sectionContainer {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.embed-container {
  position: relative;
  background: #000;
  padding-bottom: 50%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed, .embed-container .video-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.popup-overlay {
  background: rgba(0, 0, 0, 0.88);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99;
  left: 0;
  top: 0;
  display: none;
}
.popup-overlay.active {
  display: block;
}

#confirmationModal {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  left: 0;
  top: 0;
  display: none;
}
#confirmationModal.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-wrap {
  background: url(../assets/images/popupBg.png) no-repeat scroll 0 0 transparent;
  opacity: 0;
  width: 712px;
  max-width: 100%;
  height: 315px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%) translateX(-50%);
  animation: 400ms ease-in-out fadeIn 1 forwards;
}
.modal-wrap h2 {
  font-family: 'AgencyFBBold';
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  display: block;
  margin-top: 30px;
  margin-bottom: 5px;
  text-align: center;
}
.modal-wrap h3 {
  font-family: 'AgencyFBBold';
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  display: block;
  margin: 0;
  text-align: center;
}
.modal-wrap h5 {
  font-family: 'AgencyFB';
  padding: 0 55px;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.2;
  color: #fff;
  display: block;
  margin: 0;
  text-align: center;
}
.modal-wrap .buttons {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 0 100px;
  margin: 30px 0;
}
.modal-wrap .buttons a {
  font-family: 'AgencyFBBold';
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 190px;
  height: 45px;
  line-height: 45px;
  text-decoration: none;
  color: #fff;
  display: inline-block;
}
.modal-wrap .buttons a:hover {
  animation: 400ms ease-in-out pulse;
}
.modal-wrap .buttons .cancel {
  background-image: url(../assets/images/btnRed.png);
}
.modal-wrap .buttons .accept {
  background-image: url(../assets/images/btnBlue.png);
}

.flickity-prev-next-button:active {
  opacity: 1 !important;
}

#sectionContainer::before {
  content: " ";
  background: url(../assets/images/loading.png) no-repeat scroll 50% 50% transparent;
  background-size: 100%;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 90px;
  opacity: 0;
  height: 105px;
  margin-left: -45px;
  margin-top: -52px;
  display: block;
}

.serie #sectionContainer::before {
  background: url(../assets/images/logo_JL_action.png) no-repeat scroll 50% 50% transparent;
  width: 288px;
  height: 288px;
  margin-left: -144px;
  margin-top: -144px;
}

.loading #sectionContainer::before {
  animation: 1500ms linear flash infinite;
}

.loaded #sectionContainer::before {
  animation: none !important;
}

#productos .popup-overlay::before {
  content: " ";
  background: url(../assets/images/loading.png) no-repeat scroll 50% 50% transparent;
  background-size: 100%;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 105px;
  margin-left: -45px;
  margin-top: -52px;
  display: block;
  opacity: 0;
}

#productos .popup-overlay.loading::before {
  animation: 1500ms linear flash infinite;
}

#productos .popup-overlay.loaded::before {
  animation: none !important;
}

#catalogo .popup-overlay::before, #descargas .popup-overlay::before {
  content: " ";
  background: url(../assets/images/JL_logo.png) no-repeat scroll 50% 50% transparent;
  background-size: 100%;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 105px;
  margin-left: -45px;
  margin-top: -52px;
  display: block;
  opacity: 0;
}

#catalogo .popup-overlay.loading::before, #descargas .popup-overlay.loading::before {
  animation: 1500ms linear flash infinite;
}

#catalogo .popup-overlay.loaded::before, #descargas .popup-overlay.loaded::before {
  animation: none !important;
}

.popup-overlay.loaded .product-wrap, .popup-overlay.loaded .catalogo-wrap {
  opacity: 1;
}

.product-wrap, .catalogo-wrap {
  max-width: 1015px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 400ms ease-in-out;
}
.product-wrap header, .catalogo-wrap header {
  display: block;
  /* flex-wrap: nowrap; */
  /* justify-content: space-between; */
  padding: 20px 20px 0 20px;
  top: 55px;
  margin: 0;
  position: relative;
  text-align: center;
}
.product-wrap header h3, .catalogo-wrap header h3 {
  font-family: 'AgencyFBBold';
  font-size: 50px;
  color: #fff;
  display: inline-block;
  text-align: left;
  max-width: 74%;
  line-height: 1;
  margin: 0;
  position: relative;
  padding-right: 20px;
}
.product-wrap header h3 span span, .catalogo-wrap header h3 span span {
  vertical-align: top;
  padding: 2px;
  line-height: 1.4;
  font-size: 50%;
}
.product-wrap header h3::before, .catalogo-wrap header h3::before {
  content: " ";
  z-index: 1;
  display: block;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  left: 100%;
  height: 86px;
  width: 86px;
  top: 50%;
  transform: translateY(-50%);
}
.product-wrap .close, .catalogo-wrap .close {
  font-family: 'AgencyFBBold';
  font-size: 25px;
  color: #fff;
  z-index: 99;
  display: block;
  width: auto;
  text-align: right;
  overflow: hidden;
  line-height: 50px;
  text-decoration: none;
  margin: 0;
  position: absolute;
  bottom: 0;
  right: 20px;
}
.product-wrap.batman header h3::before, .batman.catalogo-wrap header h3::before {
  background-image: url(../assets/images/catalogo/movie/logoBatman.png);
}
.product-wrap.superman header h3::before, .superman.catalogo-wrap header h3::before {
  background-image: url(../assets/images/catalogo/movie/logoSuper.png);
}
.product-wrap.ww header h3::before, .ww.catalogo-wrap header h3::before {
  background-image: url(../assets/images/catalogo/movie/logoWw.png);
}
.product-wrap.flash header h3::before, .flash.catalogo-wrap header h3::before {
  background-image: url(../assets/images/catalogo/movie/logoFlash.png);
}
.product-wrap.aquaman header h3::before, .aquaman.catalogo-wrap header h3::before {
  background-image: url(../assets/images/catalogo/movie/logoAqua.png);
}
.product-wrap.cyborg header h3::before, .cyborg.catalogo-wrap header h3::before {
  background-image: url(../assets/images/catalogo/movie/logoCiborg.png);
}

.videos-wrap {
  max-width: 850px;
  margin: 90px auto 0 auto;
}
.videos-wrap header {
  /* display: flex; */
  /* flex-wrap: nowrap; */
  /* justify-content: center; */
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  height: 65px;
  position: relative;
  box-sizing: border-box;
}
.videos-wrap h3 {
  font-family: 'AgencyFBBold';
  font-size: 24px;
  color: #fff;
  display: inline-block;
  text-align: left;
  overflow: hidden;
  width: auto;
  line-height: 25px;
  margin: 0;
}
.videos-wrap .close {
  font-family: 'AgencyFBBold';
  font-size: 13px;
  color: #fff;
  width: auto;
  position: absolute;
  z-index: 99;
  display: block;
  overflow: hidden;
  line-height: 25px;
  text-decoration: none;
  right: 20px;
  top: 20px;
  margin: 0;
}

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.2, 1.2, 1.2);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulseMenu {
  from {
    transform: scale3d(0.8, 0.8, 0.8);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.footer-mobile {
  height: 0;
  padding-bottom: 15.5%;
  display: none;
  position: absolute;
  z-index: 8;
  bottom: 0;
  left: 0;
  width: 100%;
  background: url(../assets/images/footer_bg.png) no-repeat scroll 0 0 transparent;
  background-size: 100%;
}
.footer-mobile .btn-ver-mas {
  width: 30%;
  height: 0;
  padding-bottom: 8%;
  overflow: hidden;
  background: url(../assets/images/btnSeeProduct.png) no-repeat scroll 0 0 transparent;
  background-size: 100%;
  position: absolute;
  z-index: 4;
  bottom: 55%;
  right: 2.5%;
  overflow: hidden;
  text-indent: -999px;
}
.footer-mobile .btn-volver {
  width: 19%;
  height: 0;
  padding-bottom: 5%;
  overflow: hidden;
  background: url(../assets/images/btnVolverProduct.png) no-repeat scroll 0 0 transparent;
  background-size: 100%;
  position: absolute;
  z-index: 4;
  bottom: 55%;
  left: 2.5%;
  overflow: hidden;
  text-indent: -999px;
}

.btn-ver-video {
  width: 403px;
  height: 96px;
  background: url(../assets/images/btnSeeVideo.png) no-repeat scroll 0 0 transparent;
  background-size: 100%;
  position: absolute;
  z-index: 9;
  bottom: 5%;
  left: 50%;
  margin-left: -201px;
  overflow: hidden;
  text-indent: -999px;
  transition: opacity 400ms ease-in-out;
  opacity: 0;
}
.btn-ver-video::before {
  content: " ";
  position: absolute;
  z-index: 11;
  top: 0;
  display: block;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background: url(../assets/images/btn_video_hover.png) no-repeat scroll 0 0 transparent;
  background-size: 100%;
  transition: all 400ms ease-in-out;
}
.btn-ver-video.active {
  opacity: 1;
  animation: 1000ms linear pulse infinite;
}
.btn-ver-video.active:hover {
  animation: none !important;
}
.btn-ver-video.active:hover::before {
  transform: scale(1.1);
}

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.videos-carousel-wrap {
  padding-left: 95px;
  padding-right: 95px;
}

.videos-carousel {
  margin-top: 25px;
  margin-bottom: 0;
  width: 100%;
  padding: 0;
  display: block;
  padding-bottom: 18%;
}
.videos-carousel .flickity-viewport {
  position: absolute;
  width: 100%;
  z-index: 1;
}
.videos-carousel .carousel-cell {
  display: block;
  width: 33.3%;
  height: 100%;
  white-space: nowrap;
  list-style: none;
  box-sizing: border-box;
  padding-right: 5px;
  padding-left: 5px;
}
.videos-carousel .carousel-cell img {
  height: auto;
  border: 1px solid #fff;
  display: block;
  width: 100%;
  cursor: pointer;
}
.videos-carousel::after {
  content: '';
}
.videos-carousel .flickity-prev-next-button.previous {
  left: -95px;
}
.videos-carousel .flickity-prev-next-button.next {
  right: -95px;
}

.preloader-icon {
  width: 109px;
  height: 18px;
  background: url(../assets/images/Elipse.png) no-repeat scroll 12px 0 transparent;
  position: absolute;
  z-index: 10;
  bottom: 70px;
  left: 50%;
  margin-left: -54px;
  padding-top: 100px;
  opacity: 0;
  transition: opacity 400ms ease-in-out;
}
.preloader-icon::before {
  content: " ";
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 32px;
  width: 45px;
  height: 26px;
  background: url(../assets/images/arrow.png) no-repeat scroll 0 0 transparent;
}

.sectionContainer {
  background-color: #000;
  opacity: 0;
  transition: opacity 400ms ease-in-out;
}

.loaded .sectionContainer {
  opacity: 1;
}

.flickity-prev-next-button:disabled {
  opacity: 0.3;
}

.movie-descargas-wrap {
  position: absolute;
  width: 990px;
  margin-left: -495px;
  top: 29%;
  left: 50%;
  z-index: 9;
}

.movie-descargas-carousel {
  height: 0;
  padding-bottom: 46%;
  width: 100%;
}
.movie-descargas-carousel .flickity-viewport {
  position: absolute;
  width: 100%;
}
.movie-descargas-carousel .carousel-cell {
  box-sizing: border-box;
  width: 33.33%;
  height: 100%;
  text-align: center;
  padding: 0 5px;
}
.movie-descargas-carousel .carousel-cell .download {
  display: block;
  position: relative;
  width: auto;
  height: auto;
  margin: 0 auto;
}
.movie-descargas-carousel .carousel-cell .download:hover::before {
  opacity: 1;
}
.movie-descargas-carousel .carousel-cell .download::before {
  content: " ";
  position: absolute;
  z-index: 11;
  top: 0;
  display: block;
  right: 0;
  height: 100%;
  width: 100%;
  transition: all  400ms ease-in-out;
  opacity: 0;
  background: url(../assets/images/btn-download.png) no-repeat scroll 98% 98% rgba(182, 179, 179, 0.7);
}
.movie-descargas-carousel .carousel-cell img {
  width: 100%;
  display: block;
  height: auto;
}

.heroes-previous, .heroes-next {
  display: none;
}

.heroes-wrap, .catalogos-wrap, .catalogo-wrap-inner, .productos-wrap {
  position: absolute;
  width: 1010px;
  margin-left: -505px;
  top: 23%;
  height: 75%;
  left: 50%;
  z-index: 20;
}

.heroes-carousel, .catalogos-carousel, .productos-carousel, .catalogo-carousel {
  height: 100%;
  width: 100%;
  text-align: center;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  justify-content: space-between;
}
.heroes-carousel::after, .catalogos-carousel::after, .productos-carousel::after, .catalogo-carousel::after {
  content: '';
  display: none;
}
.heroes-carousel .flickity-viewport, .catalogos-carousel .flickity-viewport, .productos-carousel .flickity-viewport, .catalogo-carousel .flickity-viewport {
  position: absolute;
  z-index: 1;
  width: 100%;
}
.heroes-carousel .carousel-cell-group, .catalogos-carousel .carousel-cell-group, .productos-carousel .carousel-cell-group, .catalogo-carousel .carousel-cell-group {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: space-around;
  justify-content: space-around;
  align-items: center;
}
.heroes-carousel .carousel-cell, .catalogos-carousel .carousel-cell, .productos-carousel .carousel-cell, .catalogo-carousel .carousel-cell {
  display: inline-block;
  background: url(../assets/images/catalogo/movie/bg_movie.png) no-repeat scroll 100% 80% transparent;
  height: 47%;
  width: 32%;
  position: relative;
}
.heroes-carousel .carousel-cell .hero, .catalogos-carousel .carousel-cell .hero, .productos-carousel .carousel-cell .hero, .catalogo-carousel .carousel-cell .hero, .heroes-carousel .carousel-cell .product2, .catalogos-carousel .carousel-cell .product2, .productos-carousel .carousel-cell .product2, .catalogo-carousel .carousel-cell .product2, .heroes-carousel .carousel-cell .product, .catalogos-carousel .carousel-cell .product, .productos-carousel .carousel-cell .product, .catalogo-carousel .carousel-cell .product {
  position: static;
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  z-index: 1;
  display: block;
}
.heroes-carousel .carousel-cell .hero img, .catalogos-carousel .carousel-cell .hero img, .productos-carousel .carousel-cell .hero img, .catalogo-carousel .carousel-cell .hero img, .heroes-carousel .carousel-cell .product2 img, .catalogos-carousel .carousel-cell .product2 img, .productos-carousel .carousel-cell .product2 img, .catalogo-carousel .carousel-cell .product2 img, .heroes-carousel .carousel-cell .product img, .catalogos-carousel .carousel-cell .product img, .productos-carousel .carousel-cell .product img, .catalogo-carousel .carousel-cell .product img {
  position: absolute;
  left: 0;
  height: 100%;
  width: auto;
  z-index: 1;
  display: block;
}
.heroes-carousel .carousel-cell .hero h3, .catalogos-carousel .carousel-cell .hero h3, .productos-carousel .carousel-cell .hero h3, .catalogo-carousel .carousel-cell .hero h3, .heroes-carousel .carousel-cell .product2 h3, .catalogos-carousel .carousel-cell .product2 h3, .productos-carousel .carousel-cell .product2 h3, .catalogo-carousel .carousel-cell .product2 h3, .heroes-carousel .carousel-cell .product h3, .catalogos-carousel .carousel-cell .product h3, .productos-carousel .carousel-cell .product h3, .catalogo-carousel .carousel-cell .product h3 {
  font-size: 30px;
  text-transform: uppercase;
  color: #ebebeb;
  font-family: 'AgencyFB';
  font-weight: 400;
  margin: 0;
  position: absolute;
  z-index: 10;
  bottom: 24%;
  right: 13%;
  text-align: center;
  height: 26%;
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
}
.heroes-carousel .carousel-cell .hero h3 span, .catalogos-carousel .carousel-cell .hero h3 span, .productos-carousel .carousel-cell .hero h3 span, .catalogo-carousel .carousel-cell .hero h3 span, .heroes-carousel .carousel-cell .product2 h3 span, .catalogos-carousel .carousel-cell .product2 h3 span, .productos-carousel .carousel-cell .product2 h3 span, .catalogo-carousel .carousel-cell .product2 h3 span, .heroes-carousel .carousel-cell .product h3 span, .catalogos-carousel .carousel-cell .product h3 span, .productos-carousel .carousel-cell .product h3 span, .catalogo-carousel .carousel-cell .product h3 span {
  display: inline-block;
}
.heroes-carousel .carousel-cell .hero h3 span span, .catalogos-carousel .carousel-cell .hero h3 span span, .productos-carousel .carousel-cell .hero h3 span span, .catalogo-carousel .carousel-cell .hero h3 span span, .heroes-carousel .carousel-cell .product2 h3 span span, .catalogos-carousel .carousel-cell .product2 h3 span span, .productos-carousel .carousel-cell .product2 h3 span span, .catalogo-carousel .carousel-cell .product2 h3 span span, .heroes-carousel .carousel-cell .product h3 span span, .catalogos-carousel .carousel-cell .product h3 span span, .productos-carousel .carousel-cell .product h3 span span, .catalogo-carousel .carousel-cell .product h3 span span {
  font-size: 50%;
  vertical-align: top;
  padding: 2px;
}
.heroes-carousel .carousel-cell .hero::before, .catalogos-carousel .carousel-cell .hero::before, .productos-carousel .carousel-cell .hero::before, .catalogo-carousel .carousel-cell .hero::before, .heroes-carousel .carousel-cell .product2::before, .catalogos-carousel .carousel-cell .product2::before, .productos-carousel .carousel-cell .product2::before, .catalogo-carousel .carousel-cell .product2::before, .heroes-carousel .carousel-cell .product::before, .catalogos-carousel .carousel-cell .product::before, .productos-carousel .carousel-cell .product::before, .catalogo-carousel .carousel-cell .product::before {
  content: " ";
  position: absolute;
  z-index: 11;
  top: 24%;
  display: block;
  right: 13%;
  height: 26%;
  width: 48%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.heroes-carousel .carousel-cell .batman::before, .catalogos-carousel .carousel-cell .batman::before, .productos-carousel .carousel-cell .batman::before, .catalogo-carousel .carousel-cell .batman::before {
  background-image: url(../assets/images/catalogo/movie/logoBatman.png);
}
.heroes-carousel .carousel-cell .superman::before, .catalogos-carousel .carousel-cell .superman::before, .productos-carousel .carousel-cell .superman::before, .catalogo-carousel .carousel-cell .superman::before {
  background-image: url(../assets/images/catalogo/movie/logoSuper.png);
}
.heroes-carousel .carousel-cell .ww::before, .catalogos-carousel .carousel-cell .ww::before, .productos-carousel .carousel-cell .ww::before, .catalogo-carousel .carousel-cell .ww::before {
  background-image: url(../assets/images/catalogo/movie/logoWw.png);
}
.heroes-carousel .carousel-cell .flash::before, .catalogos-carousel .carousel-cell .flash::before, .productos-carousel .carousel-cell .flash::before, .catalogo-carousel .carousel-cell .flash::before {
  background-image: url(../assets/images/catalogo/movie/logoFlash.png);
}
.heroes-carousel .carousel-cell .aquaman::before, .catalogos-carousel .carousel-cell .aquaman::before, .productos-carousel .carousel-cell .aquaman::before, .catalogo-carousel .carousel-cell .aquaman::before {
  background-image: url(../assets/images/catalogo/movie/logoAqua.png);
}
.heroes-carousel .carousel-cell .cyborg::before, .catalogos-carousel .carousel-cell .cyborg::before, .productos-carousel .carousel-cell .cyborg::before, .catalogo-carousel .carousel-cell .cyborg::before {
  background-image: url(../assets/images/catalogo/movie/logoCiborg.png);
}
.heroes-carousel .btn-see-more, .catalogos-carousel .btn-see-more, .productos-carousel .btn-see-more, .catalogo-carousel .btn-see-more {
  width: 34%;
  height: 11%;
  background: url(../assets/images/btnSeeMore.png) no-repeat scroll 0 0 transparent;
  background-size: 100%;
  position: absolute;
  z-index: 10;
  bottom: 11%;
  right: 18%;
  overflow: hidden;
  text-indent: -999px;
}
.heroes-carousel .btn-see-more:hover, .catalogos-carousel .btn-see-more:hover, .productos-carousel .btn-see-more:hover, .catalogo-carousel .btn-see-more:hover {
  animation: 400ms ease-in-out pulse infinite;
}

.productos-carousel .group40 .carousel-cell {
  width: 40%;
}

.catalogos-wrap {
  width: 950px;
  margin-left: -475px;
  top: 17%;
  height: 80%;
}

.catalogo-wrap-inner {
  width: 950px;
  margin-left: -475px;
  top: 14%;
  height: 75%;
}

.catalogo-wrap {
  height: 100%;
  background-size: auto 90% !important;
  background-repeat: no-repeat;
  background-position: 50% 60%;
}
.catalogo-wrap header {
  top: 30px;
  text-align: right;
  padding: 35px 20px 0 20px;
}
.catalogo-wrap header h3 {
  text-align: left;
  font-size: 20px;
  padding: 0;
  font-family: 'AgencyWGLBlackExtended';
}
.catalogo-wrap header .close {
  font-size: 10px;
  top: 0px;
  bottom: initial;
  line-height: 1;
  font-family: 'AgencyWGLBlackExtended';
}
.catalogo-wrap header .close span {
  font-size: 24px;
  line-height: 1;
  padding-left: 5px;
  display: inline-block;
  vertical-align: middle;
}

.catalogos-carousel .btn-see-more {
  background: url(../assets/images/catalogo/serie/btn.png) no-repeat scroll 100% 25% transparent;
  width: 48px;
  height: 37px;
  bottom: 26%;
  right: 5%;
}
.catalogos-carousel .carousel-cell {
  background: none;
}
.catalogos-carousel .carousel-cell .hero, .catalogos-carousel .carousel-cell .product2, .catalogos-carousel .carousel-cell .product {
  position: relative;
  right: 0;
  z-index: 1;
  top: 0;
  width: 70%;
  margin: 0 auto;
  background: url(../assets/images/catalogo/serie/bg.png) no-repeat scroll 100% 25% transparent;
  background-size: 73%;
}
.catalogos-carousel .carousel-cell .hero::before, .catalogos-carousel .carousel-cell .product2::before, .catalogos-carousel .carousel-cell .product::before {
  content: none;
  display: none;
}
.catalogos-carousel .carousel-cell .hero img, .catalogos-carousel .carousel-cell .product2 img, .catalogos-carousel .carousel-cell .product img {
  z-index: 12;
}
.catalogos-carousel .carousel-cell .hero h3, .catalogos-carousel .carousel-cell .product2 h3, .catalogos-carousel .carousel-cell .product h3 {
  background: url(../assets/images/catalogo/serie/nameContainer.png) no-repeat scroll 0% 0% transparent;
  background-size: 100%;
  width: 76%;
  top: 11%;
  right: -20%;
  height: 20%;
  box-sizing: border-box;
  padding-left: 10%;
  display: flex;
  align-content: center;
  text-align: left;
}
.catalogos-carousel .carousel-cell .hero h3 span, .catalogos-carousel .carousel-cell .product2 h3 span, .catalogos-carousel .carousel-cell .product h3 span {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  display: inline-block;
  line-height: 1.2;
  text-transform: none;
}
.catalogos-carousel .flickity-prev-next-button {
  width: 54px;
  height: 54px;
  top: 45%;
  display: block;
  z-index: 70;
}
.catalogos-carousel .flickity-prev-next-button::before {
  background-image: url(../assets/images/arrows_selector.png);
}
.catalogos-carousel .flickity-prev-next-button.previous {
  left: 0;
}
.catalogos-carousel .flickity-prev-next-button.next {
  right: 0;
}

.productos-carousel .flickity-prev-next-button {
  display: block;
}
.productos-carousel::after {
  content: 'flickity';
  display: none;
}
.productos-carousel .flickity-viewport {
  position: absolute;
  width: 100%;
}
.productos-carousel .btn-see-more {
  bottom: 0%;
  right: 17%;
  width: 25%;
}
.productos-carousel .carousel-cell-group {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: space-around;
  justify-content: space-around;
  align-items: center;
}
.productos-carousel .carousel-cell {
  background-position: 50% 65%;
  background-size: 70%;
}
.productos-carousel .carousel-cell .hero::before, .productos-carousel .carousel-cell .product2::before, .productos-carousel .carousel-cell .product::before {
  content: none;
}
.productos-carousel .carousel-cell .hero .product-thumb, .productos-carousel .carousel-cell .product2 .product-thumb, .productos-carousel .carousel-cell .product .product-thumb {
  width: 100%;
  height: 87%;
  left: 0;
  bottom: 13%;
  height: 85%;
  position: absolute;
  z-index: 0;
  background-size: contain;
  background-position: 50% 100%;
  background-repeat: no-repeat;
}
.productos-carousel .carousel-cell .hero h3, .productos-carousel .carousel-cell .product2 h3, .productos-carousel .carousel-cell .product h3 {
  left: 14%;
  bottom: -5%;
  text-align: left;
  height: 11%;
  overflow: hidden;
  flex-direction: unset;
  justify-content: left;
  width: 45%;
  font-size: 16px;
  line-height: 1.3;
  /* display: block; */
  height: 42px;
}

.flickity-prev-next-button {
  width: 85px;
  height: 107px;
  top: 55%;
  opacity: 1;
  border-radius: 0;
  padding: 0;
  background-image: none;
  background-color: transparent !important;
  box-shadow: none !important;
}
.flickity-prev-next-button::before {
  content: " ";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../assets/images/arrows.png);
  background-repeat: no-repeat;
  background-size: 200%;
}
.flickity-prev-next-button:hover::before {
  animation: 400ms ease-in-out pulse 1;
}
.flickity-prev-next-button svg {
  display: none;
}
.flickity-prev-next-button.previous {
  left: -85px;
}
.flickity-prev-next-button.previous::before {
  background-position: 0 0;
}
.flickity-prev-next-button.next {
  right: -85px;
}
.flickity-prev-next-button.next::before {
  background-position: 100% 0;
}

.mobile-open .menu-mobile {
  background-position: 100% 0;
}

.menu-mobile {
  position: absolute;
  z-index: 998;
  top: 21%;
  right: 0.5%;
  width: 17%;
  height: 0;
  padding-bottom: 7%;
  background-image: url(../assets/images/menu_mobile.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 200%;
  display: none;
}

.current-menu {
  position: absolute;
  display: none;
  z-index: 22;
  top: 52%;
  right: 4.2%;
  width: 51%;
  height: 0;
  padding-bottom: 9.3%;
  background-image: url(../assets/images/menu_videos.png);
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 100%;
}
.current-menu.movie-videos a {
  background-image: url(../assets/images/videos.png);
}
.current-menu.movie-catalogo a {
  background-image: url(../assets/images/productos.png);
}
.current-menu.movie-descargas a {
  background-image: url(../assets/images/descargas.png);
}
.current-menu a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  text-indent: -999px;
  background-size: auto 62%;
  background-position: 35% 57%;
  background-repeat: no-repeat;
}

.catalogo-carousel .btn-see-more {
  background: url(../assets/images/catalogo/serie/btn.png) no-repeat scroll 100% 25% transparent;
  width: 48px;
  height: 37px;
  bottom: 2%;
  right: 23%;
}
.catalogo-carousel .carousel-cell {
  background: url(../assets/images/catalogo/serie/bg-internal.png) no-repeat scroll 100% 25% transparent;
}
.catalogo-carousel .carousel-cell .product2 h3 {
  background: url(../assets/images/catalogo/serie/nameContainer.png) no-repeat scroll 0% 0% transparent;
  background-size: 100%;
  width: 60%;
  bottom: 0%;
  left: 0%;
  height: 17%;
  box-sizing: border-box;
  padding: 0 10%;
  display: flex;
  align-content: center;
  text-align: left;
}
.catalogo-carousel .carousel-cell .product2 h3 span {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  display: inline-block;
  line-height: 1.2;
  text-transform: none;
}
.catalogo-carousel .carousel-cell-group {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: space-around;
  justify-content: space-around;
  align-items: center;
}
.catalogo-carousel .flickity-prev-next-button {
  width: 69px;
  height: 69px;
  z-index: 10;
}
.catalogo-carousel .flickity-prev-next-button::before {
  background-image: url(../assets/images/arrows2.png);
}
.catalogo-carousel::after {
  content: 'flickity';
  display: none;
}
.catalogo-carousel .flickity-viewport {
  position: absolute;
  width: 100%;
}
.catalogo-carousel .carousel-cell {
  background-position: 50% 100%;
  background-size: 65%;
}
.catalogo-carousel .carousel-cell .hero::before, .catalogo-carousel .carousel-cell .product2::before, .catalogo-carousel .carousel-cell .product::before {
  content: none;
}
.catalogo-carousel .carousel-cell .hero .product-thumb, .catalogo-carousel .carousel-cell .product2 .product-thumb, .catalogo-carousel .carousel-cell .product .product-thumb {
  width: 100%;
  height: 80%;
  left: 0;
  bottom: 20%;
  position: absolute;
  z-index: 0;
  background-size: contain;
  background-position: 50% 100%;
  background-repeat: no-repeat;
}

.main-navigation-movie .main-navigation-menu li.menu-movie-volver, .main-navigation-serie .main-navigation-menu li.menu-movie-volver {
  background: url(../assets/images/menu_volver.png) no-repeat scroll 50% 50% transparent !important;
  background-size: contain !important;
}

.selector-port-only {
  position: absolute;
  z-index: 1;
  top: 16%;
  opacity: 0;
  padding-bottom: 38%;
  right: 0;
  display: block;
  background-size: contain;
  right: 0%;
  height: 0;
  /* margin-top: 10px; */
  width: 41%;
  background: url(../assets/images/accessCata.png) no-repeat scroll 0 0 transparent;
  background-size: contain;
  display: none;
}

.section-title {
  position: absolute;
  z-index: 90;
  left: 0;
  top: 20%;
  color: #fff;
  padding-left: 13px;
  padding-bottom: 6px;
  margin: 0;
  line-height: 1;
  font-size: 15px;
  font-family: 'AgencyWGLBlackExtended';
  font-weight: 900;
  display: none;
}
.section-title::before {
  content: " ";
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-image: url(../assets/images/title.png);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 100%;
}
.section-title::after {
  content: " ";
  position: absolute;
  z-index: 2;
  bottom: 5px;
  left: 0;
  width: 10px;
  height: 100%;
  background: #34b8ed;
}

@media (max-width: 1440px) {
  #productos::before {
    background-position: -200px 0;
  }

  .btn-ver-video {
    bottom: 20%;
  }

  #productos::after {
    background-position: 100px 0;
  }

  #movie-descargas::before {
    background-position: -150px 0;
  }

  #movie-descargas::after {
    background-position: 150px 0;
  }

  #catalogo::after, #descargas::after {
    right: -7%;
  }

  #catalogo::before, #descargas::before {
    left: -11.5%;
    top: 14%;
  }

  .selector-all {
    height: 355px;
  }

  .selector-all .btn-vamos {
    bottom: 10px;
  }

  .selector-heroes.close {
    transform: translate3d(0, 360px, 0);
  }
}
@media (max-width: 1280px) {
  .main-navigation {
    transform: scale(0.8);
    margin-top: -2%;
  }

  .catalogos-carousel .flickity-prev-next-button.next {
    right: -54px;
  }

  .catalogos-carousel .flickity-prev-next-button.previous {
    left: -54px;
  }

  .catalogo-carousel .btn-see-more {
    width: 35px;
    background-size: contain;
  }

  .catalogos-carousel .carousel-cell {
    background-size: 75%;
  }
  .catalogos-carousel .carousel-cell .hero, .catalogos-carousel .carousel-cell .product2, .catalogos-carousel .carousel-cell .product {
    width: 80%;
  }
  .catalogos-carousel .carousel-cell .hero h3 span, .catalogos-carousel .carousel-cell .product2 h3 span, .catalogos-carousel .carousel-cell .product h3 span {
    font-size: 8px;
  }

  .descargar-wrap {
    width: 512px;
  }

  .videos-wrap {
    max-width: 645px;
    margin-top: 50px;
  }
  .videos-wrap h3 {
    font-size: 20px;
  }

  .preload-moovie-logo::after {
    font-size: 20px;
  }

  .heroes-carousel .carousel-cell, .catalogos-carousel .carousel-cell, .productos-carousel .carousel-cell, .catalogo-carousel .carousel-cell {
    background-size: 90%;
  }

  .catalogo-carousel .carousel-cell {
    background-size: 65%;
  }

  .catalogo-carousel .carousel-cell .product2 h3 span {
    font-size: 8px;
  }

  .heroes-carousel .carousel-cell .hero h3, .catalogos-carousel .carousel-cell .hero h3, .productos-carousel .carousel-cell .hero h3, .catalogo-carousel .carousel-cell .hero h3, .heroes-carousel .carousel-cell .product2 h3, .catalogos-carousel .carousel-cell .product2 h3, .productos-carousel .carousel-cell .product2 h3, .catalogo-carousel .carousel-cell .product2 h3, .heroes-carousel .carousel-cell .product h3, .catalogos-carousel .carousel-cell .product h3, .productos-carousel .carousel-cell .product h3, .catalogo-carousel .carousel-cell .product h3 {
    font-size: 22px;
  }

  .productos-carousel .carousel-cell {
    background-size: 70%;
  }
  .productos-carousel .carousel-cell .product h3 {
    font-size: 12px;
    /* line-height: 20px; */
    /* height: 20px; */
    bottom: -10%;
    width: 40%;
    /* line-height: 1.3; */
  }
  .productos-carousel .btn-see-more {
    width: 30%;
  }

  .heroes-carousel .carousel-cell .hero::before, .catalogos-carousel .carousel-cell .hero::before, .productos-carousel .carousel-cell .hero::before, .catalogo-carousel .carousel-cell .hero::before, .heroes-carousel .carousel-cell .product2::before, .catalogos-carousel .carousel-cell .product2::before, .productos-carousel .carousel-cell .product2::before, .catalogo-carousel .carousel-cell .product2::before, .heroes-carousel .carousel-cell .product::before, .catalogos-carousel .carousel-cell .product::before, .productos-carousel .carousel-cell .product::before, .catalogo-carousel .carousel-cell .product::before {
    background-size: 60%;
  }

  .selector-heroes {
    transform: scale3d(0.7, 0.7, 0.7);
    margin-bottom: -98px;
    right: -2%;
    margin-right: 0;
  }
  .selector-heroes.close {
    transform: translate3d(0, 253px, 0) scale3d(0.7, 0.7, 0.7);
  }

  .busqueda-implacable {
    left: 0;
  }

  .heroes-wrap, .catalogos-wrap, .catalogo-wrap-inner, .productos-wrap, .movie-descargas-wrap {
    position: absolute;
    width: 700px;
    margin-left: -350px;
  }

  .flickity-prev-next-button {
    width: 50px;
    height: 63px;
  }

  .btn-ver-video {
    width: 300px;
    height: 71px;
    margin-left: -150px;
  }

  .btn-see-more {
    width: 73px;
    height: 20px;
    right: 41px;
    bottom: 23px;
  }

  .videos-overlay .videos-wrap {
    width: 680px;
  }

  .videos-overlay .videos-wrap header {
    padding: 10px;
    margin-top: 30px;
  }

  .product-wrap, .catalogo-wrap {
    max-width: 700px;
  }
  .product-wrap h3, .catalogo-wrap h3 {
    font-size: 40px;
  }
  .product-wrap .close, .catalogo-wrap .close {
    font-size: 20px;
  }

  .catalogo-wrap {
    max-width: 95%;
  }

  .movie-descargas-wrap {
    top: 35%;
  }

  .btn-comenzar {
    bottom: 15px;
  }
}
@media (max-width: 1024px) {
  #catalogo::after, #descargas::after, #descargas::after, #catalogo::before, #descargas::before, #descargas::before {
    content: none;
    display: none;
  }
}
@media (max-width: 900px) {
  .main-navigation-serie .main-navigation-menu li {
    height: 50px !important;
    width: 152px !important;
  }

  .main-navigation-serie .main-navigation-menu li a {
    height: 22px !important;
    background-size: auto 200% !important;
    background-position: 50% 0 !important;
    transition: none !important;
    margin-top: 13px !important;
  }

  .section-title {
    display: block;
  }

  .catalogo-wrap header {
    margin-top: 25%;
    top: 0;
  }

  .catalogo-wrap {
    background-position: 50% -25%;
  }

  .legal {
    /* display: none; */
    width: 100%;
    background-position: 50% 50%;
    background-size: contain;
    right: 0;
    height: 13px;
  }

  .has-movie .menu-movie-volver {
    display: block !important;
  }
  .has-movie .menu-back {
    display: none;
  }

  .movie .flickity-prev-next-button {
    right: -20%;
    background-image: url(../assets/images/arrows.png) !important;
    background-repeat: no-repeat !important;
    background-size: 200% !important;
  }
  .movie .flickity-prev-next-button.next {
    background-position: 100% 0;
  }
  .movie .flickity-prev-next-button.prev {
    background-position: 0 0;
  }
  .movie .flickity-prev-next-button::before {
    content: none;
    display: none;
  }

  .heroes-wrap, .catalogos-wrap, .catalogo-wrap-inner, .productos-wrap, .movie-descargas-wrap {
    width: 100%;
    margin-left: 0;
    left: 0;
  }

  html, body, #page-wrap {
    height: 100%;
  }

  .current-menu {
    display: block;
  }

  .mainContainer {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .heroes-carousel .carousel-cell .hero h3, .catalogos-carousel .carousel-cell .hero h3, .productos-carousel .carousel-cell .hero h3, .catalogo-carousel .carousel-cell .hero h3, .heroes-carousel .carousel-cell .product2 h3, .catalogos-carousel .carousel-cell .product2 h3, .productos-carousel .carousel-cell .product2 h3, .catalogo-carousel .carousel-cell .product2 h3, .heroes-carousel .carousel-cell .product h3, .catalogos-carousel .carousel-cell .product h3, .productos-carousel .carousel-cell .product h3, .catalogo-carousel .carousel-cell .product h3 {
    font-size: 40px;
  }

  .productos-carousel .carousel-cell .product h3 {
    font-size: 40px;
    line-height: 40px;
    height: 40px;
    bottom: 1%;
  }

  .heroes-carousel, .catalogos-carousel, .productos-carousel, .catalogo-carousel {
    height: 0;
    width: auto;
    display: block;
    padding-bottom: 89%;
    margin: 0 20px;
  }
  .heroes-carousel .flickity-prev-next-button, .catalogos-carousel .flickity-prev-next-button, .productos-carousel .flickity-prev-next-button, .catalogo-carousel .flickity-prev-next-button {
    display: block;
  }
  .heroes-carousel::after, .catalogos-carousel::after, .productos-carousel::after, .catalogo-carousel::after {
    content: 'flickity';
  }
  .heroes-carousel .carousel-cell, .catalogos-carousel .carousel-cell, .productos-carousel .carousel-cell, .catalogo-carousel .carousel-cell {
    width: 100%;
    padding-bottom: 0;
    height: 100%;
  }
  .heroes-carousel .carousel-cell .hero, .catalogos-carousel .carousel-cell .hero, .productos-carousel .carousel-cell .hero, .catalogo-carousel .carousel-cell .hero, .heroes-carousel .carousel-cell .product2, .catalogos-carousel .carousel-cell .product2, .productos-carousel .carousel-cell .product2, .catalogo-carousel .carousel-cell .product2, .heroes-carousel .carousel-cell .product, .catalogos-carousel .carousel-cell .product, .productos-carousel .carousel-cell .product, .catalogo-carousel .carousel-cell .product {
    height: 100%;
    padding: 0;
  }
  .heroes-carousel .flickity-viewport, .catalogos-carousel .flickity-viewport, .productos-carousel .flickity-viewport, .catalogo-carousel .flickity-viewport {
    position: absolute;
    width: 100%;
  }
  .heroes-carousel .flickity-prev-next-button.previous, .catalogos-carousel .flickity-prev-next-button.previous, .productos-carousel .flickity-prev-next-button.previous, .catalogo-carousel .flickity-prev-next-button.previous {
    left: -50px;
  }
  .heroes-carousel .flickity-prev-next-button.next, .catalogos-carousel .flickity-prev-next-button.next, .productos-carousel .flickity-prev-next-button.next, .catalogo-carousel .flickity-prev-next-button.next {
    right: -50px;
  }
  .heroes-carousel .btn-see-more, .catalogos-carousel .btn-see-more, .productos-carousel .btn-see-more, .catalogo-carousel .btn-see-more {
    width: 36%;
    height: 0;
    padding-bottom: 11%;
    background: url(../assets/images/btnSee.png) no-repeat scroll 0 0 transparent;
    background-size: contain;
    position: absolute;
    z-index: 10;
    bottom: 0;
    right: 16%;
    margin-left: 0;
    overflow: hidden;
    text-indent: -999px;
  }

  .productos-carousel .carousel-cell .product h3 {
    height: 40px;
    bottom: 0;
    font-size: 40px;
  }
  .productos-carousel .btn-see-more {
    width: 20%;
    height: 0;
    padding-bottom: 9%;
    background-position: bottom;
  }

  #productos .footer-mobile {
    display: block;
  }
  #productos::before {
    background-position: -30px 0;
    width: 100%;
    background-size: cover;
  }
  #productos::after {
    content: none;
  }

  #movie-descargas::before {
    content: none;
  }
  #movie-descargas::after {
    content: none;
  }

  .heroes-wrap, .catalogos-wrap, .catalogo-wrap-inner, .productos-wrap {
    width: 100%;
    height: 45%;
    bottom: 7.5%;
    margin-left: 0;
    left: 0;
    top: inherit;
    padding: 0 12%;
    box-sizing: border-box;
  }

  .main-navigation-movie, .main-navigation-serie {
    transform: none;
    margin: 0;
    width: 100%;
    height: 13%;
    left: 0;
    z-index: 99;
    background: url(../assets/images/header_mobile.png) no-repeat scroll 100% 0 transparent;
    background-size: 100%;
  }
  .main-navigation-movie::before, .main-navigation-serie::before {
    content: none;
  }
  .main-navigation-movie .menu-logo, .main-navigation-serie .menu-logo {
    position: absolute;
    z-index: 2;
    top: 2%;
    left: 0;
    width: 45%;
    padding-bottom: 29%;
    height: 0;
    background: url(../assets/images/logoMovie_mobile.png) no-repeat scroll 0 0 transparent;
    background-size: contain;
  }
  .main-navigation-movie .main-navigation-menu, .main-navigation-serie .main-navigation-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 996;
    left: 0;
    top: 0;
    padding: 0;
    margin: 0;
    display: none;
  }
  .main-navigation-movie .main-navigation-menu li, .main-navigation-serie .main-navigation-menu li {
    position: absolute;
    z-index: 22;
    width: 51.3%;
    padding-bottom: 9.4%;
    height: 0;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url(../assets/images/menu_videos.png) !important;
  }
  .main-navigation-movie .main-navigation-menu li a, .main-navigation-serie .main-navigation-menu li a {
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    height: 100%;
    text-indent: -999px;
    background-position: 35% 56%;
    background-repeat: no-repeat;
    background-size: auto 61%;
    transform: none;
    animation: none !important;
  }

  .preload {
    width: 1502px;
    margin-left: -751px;
    display: none;
  }
  .preload .preload-right {
    background-image: url(../assets/images/preload_right_mobile.png);
    padding-left: 6%;
  }
  .preload .preload-left {
    background-image: url(../assets/images/preload_left_mobile.png);
    padding-right: 6%;
  }
  .preload .preload-text {
    font-size: 20px;
  }

  .main-navigation-serie {
    transform: none;
    margin: 0;
    width: 100%;
    height: 0;
    padding-bottom: 16%;
    left: 0;
    background: url(../assets/images/containerLogo.png) no-repeat scroll 7% 0 transparent !important;
    background-size: auto 100% !important;
  }
  .main-navigation-serie::before {
    content: " ";
    left: 1%;
    width: 8%;
    padding-bottom: 8%;
    top: 11%;
    height: 0;
    background-size: 100%;
  }
  .main-navigation-serie .menu-logo {
    top: 0;
    left: 9.2%;
    width: 44%;
    padding: 0%;
    height: 100%;
    background: url(../assets/images/logoJla.png) no-repeat scroll 0 0 transparent;
    background-size: contain;
  }
  .main-navigation-serie .menu-mobile {
    top: 10px;
    right: 20px;
    width: 59px;
    height: 49px;
    padding-bottom: 0;
    background-image: url(../assets/images/btnMenu.png);
  }
  .main-navigation-serie .main-navigation-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10;
    left: 0;
    top: 0;
    padding: 0;
    margin: 0;
    display: none;
    padding-right: 20px;
    padding-top: 69px;
    box-sizing: border-box;
  }
  .main-navigation-serie .main-navigation-menu li {
    position: relative;
    left: initial !important;
    margin-bottom: 10px;
    float: right;
    clear: both;
    background-image: url(../assets/images/menu_serie.png) !important;
    padding: 0 !important;
  }
  .main-navigation-serie .main-navigation-menu li a {
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    height: 100%;
    text-indent: -999px;
    background-position: 35% 56%;
    background-repeat: no-repeat;
    background-size: auto 61%;
    transform: none;
    animation: none !important;
  }

  .descargas-next img, .descargas-prev img {
    display: none;
  }

  .menu-movie-videos {
    left: initial;
    right: 4%;
    top: 6.8% !important;
  }

  .menu-movie-catalogo {
    left: initial;
    right: 9%;
    top: 14.8% !important;
  }

  .menu-movie-descargas {
    left: initial;
    right: 14%;
    top: 22.8% !important;
  }

  .menu-movie-volver {
    left: initial;
    right: 19%;
    top: 30.8% !important;
  }

  .btn-ver-video {
    bottom: 5%;
    width: 62%;
    height: 0;
    padding-bottom: 14%;
    margin-left: -31%;
  }

  .menu-mobile {
    display: block;
  }

  .mobile-open .main-navigation-menu {
    display: block !important;
  }

  .videos-carousel {
    padding-bottom: 25%;
    margin-top: 10%;
  }
  .videos-carousel .carousel-cell {
    width: 50%;
    padding-right: 2%;
    padding-left: 2%;
  }
  .videos-carousel .flickity-prev-next-button.previous {
    left: -16%;
    width: 12%;
    height: 51%;
  }
  .videos-carousel .flickity-prev-next-button.next {
    right: -16%;
    width: 12%;
    height: 51%;
  }

  .videos-carousel-wrap {
    padding-left: 12%;
    padding-right: 12%;
  }

  .videos-wrap {
    padding: 0 3%;
  }
  .videos-wrap header {
    display: block;
    height: auto;
    padding-top: 30%;
    padding-bottom: 2%;
    position: relative;
  }
  .videos-wrap header h3 {
    text-align: center;
    line-height: 1.3;
    font-size: 40px;
    width: 100%;
  }
  .videos-wrap .close {
    position: absolute;
    top: 6%;
    right: 20px;
    line-height: 1;
    font-size: 40px;
  }

  .movie-descargas-wrap {
    padding: 0 19%;
    box-sizing: border-box;
    top: 27%;
  }

  .movie-descargas-carousel {
    padding-bottom: 140%;
  }
  .movie-descargas-carousel .carousel-cell {
    width: 100%;
  }
  .movie-descargas-carousel .flickity-prev-next-button.previous {
    left: -20%;
    width: 19%;
    height: 0;
    padding-bottom: 23%;
  }
  .movie-descargas-carousel .flickity-prev-next-button.next {
    right: -20%;
    width: 19%;
    height: 0;
    padding-bottom: 23%;
  }

  #productos .productos-wrap {
    width: 100%;
    bottom: 10%;
    margin-left: 0;
    left: 0;
    top: inherit;
    padding: 0 12%;
    box-sizing: border-box;
    height: 65%;
    opacity: 0;
  }
  #productos .productos-carousel {
    height: 100%;
    padding: 0;
  }
  #productos .productos-carousel .btn-see-more, #productos .productos-carousel .carousel-cell .product h3 {
    display: none;
  }
  #productos .productos-carousel .carousel-cell {
    background: none;
    padding-bottom: 0;
    height: 100%;
  }
  #productos .productos-carousel .carousel-cell .product .product-thumb {
    bottom: 0;
    height: 100%;
    background-position: 50% 50%;
  }
  #productos .productos-carousel .flickity-prev-next-button.next, #productos .productos-carousel .flickity-prev-next-button.previous {
    top: 75%;
    transform: none;
  }
  #productos.product-active::before {
    content: none;
  }
  #productos .popup-overlay {
    position: absolute;
    z-index: 50;
    background: url(../assets/images/background_sections.jpg) no-repeat scroll bottom center transparent;
    background-size: cover;
  }
  #productos .popup-overlay header {
    display: none;
  }

  .current-menu.movie-batman::before, .current-menu.movie-batman::before, .current-menu.movie-superman::before, .current-menu.movie-ww::before, .current-menu.movie-flash::before, .current-menu.movie-aquaman::before, .current-menu.movie-cyborg::before {
    content: " ";
    position: absolute;
    z-index: 1;
    top: 100%;
    margin-top: -8%;
    padding-bottom: 60%;
    display: block;
    background-size: contain;
    right: 0%;
    height: 0;
    /* margin-top: 10px; */
    width: 60%;
    background-position: 100% 0%;
    background-repeat: no-repeat;
  }
  .current-menu.movie-batman::before {
    background-image: url(../assets/images/catalogo/movie/logoBatman.png);
  }
  .current-menu.movie-batman a {
    background-image: url(../assets/images/batman.png);
  }
  .current-menu.movie-superman::before {
    background-image: url(../assets/images/catalogo/movie/logoSuper.png);
  }
  .current-menu.movie-superman a {
    background-image: url(../assets/images/SUPERMAN.png);
  }
  .current-menu.movie-ww::before {
    background-image: url(../assets/images/catalogo/movie/logoWw.png);
  }
  .current-menu.movie-ww a {
    background-image: url(../assets/images/WONDER.png);
  }
  .current-menu.movie-flash::before {
    background-image: url(../assets/images/catalogo/movie/logoFlash.png);
  }
  .current-menu.movie-flash a {
    background-image: url(../assets/images/FLASH.png);
  }
  .current-menu.movie-aquaman::before {
    background-image: url(../assets/images/catalogo/movie/logoAqua.png);
  }
  .current-menu.movie-aquaman a {
    background-image: url(../assets/images/AQUAMAN.png);
  }
  .current-menu.movie-cyborg::before {
    background-image: url(../assets/images/catalogo/movie/logoCiborg.png);
  }
  .current-menu.movie-cyborg a {
    background-image: url(../assets/images/CYBORG.png);
  }

  .modal-wrap {
    background-size: contain;
    height: 0;
    padding-bottom: 128px;
    max-width: 288px;
  }
  .modal-wrap h2 {
    font-size: 17px;
    margin-top: 9px;
  }
  .modal-wrap h3 {
    font-size: 9px;
    margin-top: 7px;
  }
  .modal-wrap h5 {
    padding: 0 7% 0 3%;
    position: absolute;
    top: initial;
    z-index: 1;
    left: 0;
    font-size: 5px;
    width: 100%;
    line-height: 1.5;
    bottom: 10%;
    box-sizing: border-box;
  }
  .modal-wrap .buttons {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 0 15%;
    margin: 5% 0 10%;
    height: 30%;
  }
  .modal-wrap .buttons a {
    width: 85px;
    height: 21px;
    line-height: 21px;
    background-size: contain;
    font-size: 10px;
  }
  .modal-wrap .buttons .cancel {
    background-image: url(../assets/images/btnRed.png);
  }
  .modal-wrap .buttons .accept {
    background-image: url(../assets/images/btnBlue.png);
  }

  #videos {
    background: url(../assets/images/bg_mobile.jpg) no-repeat scroll 50% 50% transparent;
    background-size: cover;
    position: relative;
  }

  .preload-movie .preload-movie-wrap {
    top: 50%;
    width: 40%;
  }

  .selector-heroes {
    display: none;
  }

  .home-wrap::before, .descargas-wrap::before, .home-wrap::after, .descargas-wrap::after {
    width: 160%;
    height: 0;
    padding-bottom: 160%;
    left: 50%;
    margin-left: -80%;
    top: 5%;
  }

  .busqueda-implacable {
    width: 35%;
    bottom: initial;
    top: 17%;
    left: 5%;
  }
  .busqueda-implacable span {
    font-size: 0;
    width: 100%;
    padding-bottom: 90%;
    background-size: contain;
  }

  #home .batman_home {
    background-image: url(../assets/images/batman_home_mobile.png);
    background-size: auto 100% !important;
    bottom: 0;
    top: initial;
    height: 60%;
  }
  #home .heroes_home {
    background-image: url(../assets/images/heroes_home_mobile.png);
    background-size: auto 100% !important;
    bottom: 0;
    top: initial;
    height: 60%;
  }

  #home.active .selector-port-only {
    animation: 400ms ease-in-out 2400ms fadeIn 1 forwards;
  }

  .btn-comenzar {
    width: 20%;
    padding-bottom: 5%;
    height: 0;
    background-size: contain;
    background-position: 50% 50%;
    margin-left: 3%;
    /* margin: 0; */
    bottom: 4%;
    z-index: 99;
    transform: translateX(-50%);
  }
  .btn-comenzar:hover {
    animation: none;
  }

  .juego-wrap::after {
    height: 95%;
    background: url(../assets/images/game_heroes_mobile.png) no-repeat scroll 50% 0 transparent;
    background-size: contain;
    width: 87%;
    left: 13%;
  }

  #catalogo::before, #descargas::before, #descargas::before, #catalogo::after, #descargas::after, #descargas::after {
    content: none;
    display: none;
  }

  .descargas-selector .descargas-prev img, .descargas-selector .descargas-next img {
    display: none;
  }

  .descargas-selector {
    width: 100%;
    height: 0;
    padding-bottom: 22%;
  }

  .descargas-carousel-wrap {
    width: 100%;
    padding-top: 42%;
    padding-bottom: 32%;
  }

  .descargas-carousel::before {
    width: 41%;
    left: 7%;
    background-size: contain !important;
    height: 0;
    padding-bottom: 17%;
    top: 10%;
  }

  .descargas-open {
    left: 3%;
    width: 17%;
    height: 0;
    background-size: contain !important;
    padding-bottom: 17%;
    top: 35%;
  }

  .locked .descargas-open {
    width: 73%;
  }

  .descargas-selector .descargas-current {
    width: 53%;
    background-size: contain;
    height: 100%;
    margin-left: 0;
    left: 50%;
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
  }

  .descargas-selector .descargas-prev {
    height: 66%;
    background-size: contain;
    width: 40%;
    bottom: 27%;
    left: 12%;
  }
  .descargas-selector .descargas-prev:hover {
    transform: none;
  }

  .descargas-selector .descargas-next {
    height: 66%;
    background-size: contain;
    background-position: top right;
    width: 40%;
    bottom: 27%;
    right: 12%;
  }
  .descargas-selector .descargas-next:hover {
    transform: none;
  }

  .descargar-wrap {
    width: 100%;
    height: 100%;
    margin: 0;
    left: 0;
    bottom: -5%;
  }

  .descargar-wrap header {
    width: 96%;
    padding-right: 9%;
    box-sizing: border-box;
    /* display: flex; */
    /* justify-content: center; */
    /* flex-direction: column; */
    left: 2%;
    height: 28px;
    margin: 0;
    background-size: 90% 100%;
    top: 10%;
  }
  .descargar-wrap header .close {
    right: 2%;
    top: 0;
    font-size: 20px;
    line-height: 30px;
  }
  .descargar-wrap header h3 {
    width: 100%;
    line-height: 1;
    font-size: 12px;
    line-height: 28px;
    /* vertical-align: top; */
    /* display: inline-block; */
  }

  .descargar-carousel {
    padding-bottom: 100%;
    position: absolute;
    z-index: 10;
    top: 50px;
    left: 0;
    width: 100%;
    height: 0;
    background: url(../assets/images/bgcontainer.png) no-repeat scroll 0 0 transparent;
    background-size: 150%;
    background-position: 50% 50%;
    padding-bottom: 150%;
    bottom: -2%;
    top: initial;
  }
  .descargar-carousel .carousel-cell {
    padding: 25% 0;
  }
  .descargar-carousel .print {
    display: none;
  }
  .descargar-carousel .download {
    width: 25%;
    height: 0;
    padding-bottom: 25%;
    background-size: 100%;
    right: 5%;
    top: initial;
    bottom: 10%;
  }
  .descargar-carousel .flickity-prev-next-button {
    width: 15%;
    height: 0;
    padding-bottom: 16%;
    top: 50%;
  }
  .descargar-carousel .flickity-prev-next-button.previous {
    left: 5%;
  }
  .descargar-carousel .flickity-prev-next-button.next {
    right: 5%;
  }

  .catalogos-carousel {
    height: 100%;
    padding: 0;
    margin: 0;
  }
  .catalogos-carousel .carousel-cell {
    background: none;
  }
  .catalogos-carousel .carousel-cell .hero, .catalogos-carousel .carousel-cell .product2, .catalogos-carousel .carousel-cell .product {
    background: none;
  }
  .catalogos-carousel .carousel-cell .hero img, .catalogos-carousel .carousel-cell .product2 img, .catalogos-carousel .carousel-cell .product img {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 40%;
    height: auto;
  }
  .catalogos-carousel .carousel-cell .hero h3, .catalogos-carousel .carousel-cell .product2 h3, .catalogos-carousel .carousel-cell .product h3 {
    height: 24%;
    padding-left: 24%;
    padding-right: 10%;
    background-size: 100%;
    background: url(../assets/images/nameContainer.png) no-repeat scroll 50% 100% transparent;
    background-size: contain;
    width: 90%;
    right: -10%;
  }
  .catalogos-carousel .carousel-cell .hero h3 span, .catalogos-carousel .carousel-cell .product2 h3 span, .catalogos-carousel .carousel-cell .product h3 span {
    font-size: 16px;
  }
  .catalogos-carousel .btn-see-more {
    bottom: 15%;
    right: 0;
    background: url(../assets/images/catalogo/serie/btn.png) no-repeat scroll 0 0 transparent;
    background-size: 100%;
    width: 20%;
    padding-bottom: 16%;
    z-index: 99;
  }

  .catalogos-wrap {
    height: 55%;
  }

  .catalogo-carousel {
    height: 100%;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .catalogo-carousel .btn-see-more {
    background: url(../assets/images/catalogo/serie/btn.png) no-repeat scroll 0 0 transparent;
    background-size: 100%;
    width: 15%;
    padding-bottom: 12%;
    bottom: 0%;
    right: 12%;
  }
  .catalogo-carousel .flickity-prev-next-button {
    width: 15%;
    height: 0;
    padding-bottom: 16%;
    top: 50%;
  }
  .catalogo-carousel .flickity-prev-next-button.previous {
    left: -5%;
  }
  .catalogo-carousel .flickity-prev-next-button.next {
    right: -5%;
  }
  .catalogo-carousel .carousel-cell {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
  }
  .catalogo-carousel .carousel-cell .product2 h3 {
    height: 14%;
    width: 50%;
    padding-left: 7%;
    padding-right: 4%;
  }
  .catalogo-carousel .carousel-cell .product2 h3 span {
    font-size: 12px;
  }
  .catalogo-carousel .carousel-cell .product2 .product-thumb {
    height: 100%;
    bottom: 0;
  }

  .catalogo-wrap-inner {
    height: 50%;
    top: 58%;
    bottom: initial;
    transform: translateY(-50%);
  }

  .catalogo-wrap header h3 {
    font-size: 14px;
  }
  .catalogo-wrap header h3::before {
    content: none;
    display: none;
  }

  .catalogo-wrap header .close {
    font-size: 12px;
    bottom: initial;
    top: 15%;
    line-height: 1;
  }

  .catalogos-carousel .flickity-prev-next-button.previous {
    left: -10%;
  }

  .catalogos-carousel .flickity-prev-next-button.next {
    right: -10%;
  }
}
#bodyFlow.mobile #home .batman_home, #bodyFlow.mobile #home .heroes_home {
  background-size: 85% auto;
}
#bodyFlow.mobile .heroes-wrap, #bodyFlow.mobile .catalogos-wrap, #bodyFlow.mobile .catalogo-wrap-inner, #bodyFlow.mobile .productos-wrap, #bodyFlow.mobile .catalogos-wrap, #bodyFlow.mobile .catalogo-wrap-inner, #bodyFlow.mobile .productos-wrap, #bodyFlow.mobile .catalogo-wrap-inner {
  height: 60%;
}

@media screen and (max-width: 900px) and (min-height: 740px) {
  .busqueda-implacable {
    width: 28%;
  }

  .catalogos-carousel .carousel-cell .hero h3 span, .catalogos-carousel .carousel-cell .product2 h3 span, .catalogos-carousel .carousel-cell .product h3 span, .catalogos-carousel .carousel-cell .product2 h3 span, .catalogos-carousel .carousel-cell .product h3 span {
    font-size: 24px;
  }

  .catalogo-carousel .carousel-cell .product2 h3 span {
    font-size: 20px;
  }

  .descargas-carousel-wrap {
    width: 100%;
    padding-top: 30%;
    padding-bottom: 25%;
  }

  .descargar-wrap header {
    height: 35px;
  }
  .descargar-wrap header h3 {
    font-size: 16px;
    line-height: 35px;
  }

  #juego .juego-wrap {
    background: url(../assets/images/rotate.png) no-repeat scroll 50% 60% rgba(0, 0, 0, 0.5);
    background-size: 60% auto;
  }

  .modal-wrap {
    padding-bottom: 224px;
    max-width: 500px;
  }

  .modal-wrap h2 {
    font-size: 26px;
    margin-top: 20px;
  }

  .modal-wrap h3 {
    font-size: 20px;
  }

  .modal-wrap .buttons a {
    width: 140px;
    height: 35px;
    line-height: 35px;
    background-size: contain;
    font-size: 16px;
  }

  .modal-wrap h5 {
    font-size: 8px;
  }

  .btn-vamos {
    width: 100%;
    height: 35px;
    background-size: contain;
    font-size: 12px;
    line-height: 35px;
    left: 0;
    margin-left: 0;
  }
}
@media screen and (max-width: 900px) and (orientation: portrait) {
  .btn-vamos {
    width: 100%;
    height: 35px;
    background-size: contain;
    font-size: 12px;
    line-height: 35px;
    left: 0;
    margin-left: 0;
    background-position: 50% 50%;
  }

  .juego-wrap {
    background: url(../assets/images/rotate.png) no-repeat scroll 50% 60% rgba(0, 0, 0, 0.5);
    background-size: 90% auto;
  }

  #gameCanvas, .btn-comenzar {
    display: none;
  }

  .juego-wrap::after {
    content: none;
    display: none;
  }
}
@media screen and (max-width: 900px) and (orientation: landscape) {
  .catalogo-carousel .carousel-cell .product2 h3 {
    height: 17%;
  }
  .catalogo-carousel .carousel-cell .product2 h3 span {
    font-size: 14px;
  }

  .locked .descargas-open {
    width: 48%;
    padding-bottom: 11%;
    left: -15%;
    top: 55%;
  }

  .modal-wrap {
    max-width: 510px;
    padding-bottom: 227px;
  }

  .mainContainer.juego .selector-heroes {
    display: none;
  }

  .serie .legal {
    right: initial;
    left: 3px;
    bottom: -3px;
    margin: 0;
    width: 25%;
    background-size: contain;
  }

  .popup-overlay .main-navigation-serie {
    background: url(../assets/images/containerLogo.png) no-repeat scroll 7% 0 transparent !important;
    background-size: auto 100% !important;
  }

  .catalogo-wrap-inner {
    height: 69% !important;
    width: 50%;
    transform: translateX(-50%) translateY(-50%);
    left: 50%;
    top: 60%;
    padding: 0;
  }
  .catalogo-wrap-inner .catalogo-carousel {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 2%;
    padding-bottom: 0;
    right: initial;
    left: 0;
    margin: 0;
  }

  .catalogos-wrap {
    padding: 0;
    height: 100%;
  }
  .catalogos-wrap .catalogos-carousel {
    height: 80%;
    padding: 0;
    right: initial;
    width: 40%;
    transform: translateX(-50%);
    left: 50%;
    margin: 0;
    top: 20%;
  }
  .catalogos-wrap .catalogos-carousel .flickity-prev-next-button.previous {
    left: -10%;
  }
  .catalogos-wrap .catalogos-carousel .flickity-prev-next-button.next {
    right: -10%;
  }

  .section-title {
    top: initial;
    bottom: 9%;
  }

  .descargar-carousel {
    padding: 0;
    width: 60%;
    left: 50%;
    padding-bottom: 60%;
    top: 50%;
    background: none;
    transform: translateY(-50%) translateX(-50%);
  }
  .descargar-carousel .download {
    right: -7%;
    bottom: 10%;
  }
  .descargar-carousel .carousel-cell {
    height: 0;
    padding-bottom: 100%;
  }
  .descargar-carousel .carousel-cell .product-thumb {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    padding-bottom: 100%;
    width: 100%;
    height: 0;
  }
  .descargar-carousel .flickity-prev-next-button {
    width: 20%;
    padding-bottom: 20%;
  }
  .descargar-carousel .flickity-prev-next-button.previous {
    left: -10%;
  }
  .descargar-carousel .flickity-prev-next-button.next {
    right: -10%;
  }

  .descargar-wrap {
    width: 70%;
    margin: 0;
    background: url(../assets/images/bgcontainer.png) no-repeat scroll 50% 50% transparent;
    background-size: 100% auto;
    transform: translateX(-50%);
    height: 100%;
    bottom: 0;
    left: 50%;
  }
  .descargar-wrap header {
    bottom: 2%;
    margin-top: 0;
    left: 7%;
    top: initial;
    height: 35px;
  }
  .descargar-wrap header h3 {
    line-height: 35px;
  }

  .descargas-selector {
    width: 60%;
    height: 0;
    padding-bottom: 13%;
    left: 20%;
    bottom: 0;
  }

  .descargas-carousel-wrap {
    width: 100%;
    padding-top: 2%;
    padding-bottom: 7%;
  }

  .descargas-carousel {
    width: 60%;
    margin: 0 auto;
  }

  .descargas-open {
    top: 45%;
  }

  .descargas-carousel::before {
    top: 25%;
    left: -8%;
  }

  #home .batman_home {
    background-image: url(../assets/images/batman_home.png);
    background-size: auto 85% !important;
    bottom: 0;
    top: initial;
    height: 100%;
  }
  #home .heroes_home {
    background-image: url(../assets/images/heroes_home.png);
    background-size: auto 85% !important;
    bottom: 0;
    top: initial;
    height: 100%;
  }

  .selector-port-only {
    display: none;
  }

  .btn-vamos {
    display: block;
  }

  .catalogo-wrap header {
    margin-top: 0%;
    top: 3%;
  }

  .catalogo-wrap {
    background-position: 50% 100%;
  }

  .home-wrap::before, .descargas-wrap::before, .home-wrap::after, .descargas-wrap::after {
    width: 70%;
    height: 0;
    padding-bottom: 70%;
    left: 15%;
    top: -10%;
    margin-left: 0;
  }

  .busqueda-implacable {
    width: 18%;
    bottom: 60px;
    left: 20px;
    top: initial;
  }
  .busqueda-implacable span {
    font-size: 16px;
    padding-bottom: 105%;
    background-size: contain;
  }

  .btn-vamos {
    width: 90%;
    background-size: contain;
    margin-left: -60px;
    font-size: 12px;
    height: 30px;
    width: 120px;
    line-height: 30px;
  }

  .selector-heroes {
    right: -3.5%;
    display: block;
  }

  .selector-all {
    background-image: url(../assets/images/selector_all_mobile.png);
  }
  .selector-all .btn-vamos {
    bottom: 30px;
  }

  .main-navigation-serie {
    padding-bottom: 10%;
    background-position: 5% 0;
  }
  .main-navigation-serie::before {
    width: 5%;
    padding-bottom: 5%;
    left: 3%;
  }
  .main-navigation-serie .menu-logo {
    width: 21%;
    left: 8%;
  }
  .main-navigation-serie .main-navigation-menu {
    padding-right: 99px;
    padding-top: 10px;
  }

  .btn-mas-videos {
    display: block;
  }

  .videos-wrap {
    margin-top: 5%;
  }

  .videos-wrap header h3 {
    display: none;
  }

  #page-wrap {
    height: 100%;
    padding: 0;
  }

  .preload-movie-wrap {
    width: 25%;
  }

  .main-navigation-movie .menu-logo, .main-navigation-serie .menu-logo {
    padding-bottom: 10%;
    width: 17%;
    left: 8.3%;
    top: 0%;
    height: 0;
  }

  .footer-mobile {
    background: none;
    padding-bottom: 2.5%;
  }
  .footer-mobile .btn-ver-mas {
    width: 20%;
    padding-bottom: 5%;
  }
  .footer-mobile .footer-mobile .btn-volver {
    width: 13%;
    padding-bottom: 3%;
  }

  #productos::before {
    content: " ";
    background-position: 0 0;
    width: 40%;
    top: 10%;
  }

  .current-menu {
    width: 25%;
    padding-bottom: 4.6%;
    right: 7.2%;
    top: 40%;
  }

  .menu-mobile {
    top: 10%;
    right: 1%;
    width: 11.2%;
    padding-bottom: 4.7%;
  }

  .current-menu.movie-batman::before, .current-menu.movie-batman::before, .current-menu.movie-superman::before, .current-menu.movie-ww::before, .current-menu.movie-flash::before, .current-menu.movie-aquaman::before, .current-menu.movie-cyborg::before {
    top: 100%;
    margin-top: -8%;
    padding-bottom: 70%;
    width: 100%;
    background-position: 50% 100%;
  }

  .main-navigation-movie .main-navigation-menu li, .main-navigation-serie .main-navigation-menu li {
    width: 28.3%;
    padding-bottom: 5.2%;
  }

  .menu-movie-catalogo {
    left: initial;
    right: 6%;
    top: 22.8% !important;
  }

  .menu-movie-descargas {
    left: initial;
    right: 8%;
    top: 38.8% !important;
  }

  .menu-movie-volver {
    left: initial;
    right: 10%;
    top: 54.8% !important;
  }

  #productos .productos-carousel .flickity-prev-next-button.next, #productos .productos-carousel .flickity-prev-next-button.previous {
    top: 50%;
    transform: none;
  }

  #videos {
    background: url(../assets/images/bg_mobile_land.jpg) no-repeat scroll 50% 0 transparent;
    background-size: cover;
  }

  #movie-descargas {
    background-size: cover;
  }

  .movie-descargas-wrap {
    height: 85%;
    margin-left: -25%;
    width: 50%;
    left: 50%;
    padding: 0%;
    box-sizing: border-box;
    top: 11%;
  }

  .movie-descargas-carousel .carousel-cell {
    text-align: center;
  }

  .movie-descargas-carousel .carousel-cell img {
    width: auto;
    height: 100%;
  }

  .movie-descargas-carousel .flickity-prev-next-button.previous, .movie-descargas-carousel .flickity-prev-next-button.next {
    width: 13%;
    height: 0;
    top: 65%;
    padding-bottom: 16%;
  }

  .btn-ver-video {
    width: 34%;
    height: 0;
    padding-bottom: 8%;
    bottom: 5%;
    margin-left: -17%;
  }

  .heroes-carousel, .catalogos-carousel, .productos-carousel, .catalogo-carousel {
    padding-bottom: 50%;
    margin-left: 35%;
    margin-right: 0;
  }

  .heroes-carousel .carousel-cell, .catalogos-carousel .carousel-cell, .productos-carousel .carousel-cell, .catalogo-carousel .carousel-cell {
    background-size: auto 90%;
  }

  .modal-wrap .buttons a {
    width: 42%;
    /* padding-bottom: 12%; */
    height: 37px;
    line-height: 37px;
    background-size: contain;
    font-size: 20px;
  }

  .modal-wrap .buttons {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 0px 15%;
    margin: 4% 0 4%;
    height: auto;
  }

  .modal-wrap h3 {
    font-size: 17px;
    margin-top: 3%;
  }

  .modal-wrap h2 {
    font-size: 34px;
  }

  .modal-wrap h5 {
    position: absolute;
    /* top: 100%; */
    /* padding-top: 3%; */
    z-index: 1;
    font-size: 9px;
    bottom: 10%;
    left: initial;
  }

  .videos-wrap .close {
    position: absolute;
    top: 8%;
    right: 2%;
    line-height: 1;
    font-size: 24px;
  }

  .videos-wrap header h3 {
    font-size: 22px;
    padding-left: 2%;
    line-height: 33px;
    height: 33px;
    overflow: hidden;
    text-align: left;
  }

  .videos-wrap header {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 2%;
    width: 100%;
    z-index: 1;
    left: 0;
  }

  .videos-wrap {
    padding: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 12;
  }

  .embed-container {
    padding: 0;
    height: 70%;
    width: 78%;
    margin-left: 2%;
    margin-top: 10%;
  }

  .videos-carousel-wrap {
    padding: 0;
  }

  .videos-wrap.active .videos-carousel {
    display: block;
  }

  .videos-carousel {
    display: none;
    padding: 0;
    position: absolute;
    margin: 0;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 0;
    padding-bottom: 15.4%;
    z-index: 55;
    transform: translateY(-50%) translateX(-50%);
  }

  .videos-carousel .carousel-cell {
    width: 33.3%;
  }

  .videos-carousel .flickity-prev-next-button {
    display: none !important;
  }

  .heroes-wrap, .catalogos-wrap, .catalogo-wrap-inner, .productos-wrap {
    height: 100%;
  }

  .heroes-carousel, .catalogos-carousel, .productos-carousel, .catalogo-carousel {
    position: absolute;
    width: 46%;
    height: 0;
    bottom: 0;
    padding-bottom: 35%;
    right: 12%;
  }

  .movie-descargas-wrap {
    height: 80%;
    margin-left: -15%;
    width: 27%;
    left: 50%;
    padding: 0%;
    box-sizing: border-box;
    bottom: 5%;
    top: initial;
  }
}
@media (max-width: 664px) {
  .videos-wrap header h3, .videos-wrap .close {
    font-size: 100%;
  }

  .heroes-carousel .carousel-cell .hero h3, .catalogos-carousel .carousel-cell .hero h3, .productos-carousel .carousel-cell .hero h3, .catalogo-carousel .carousel-cell .hero h3, .heroes-carousel .carousel-cell .product2 h3, .catalogos-carousel .carousel-cell .product2 h3, .productos-carousel .carousel-cell .product2 h3, .catalogo-carousel .carousel-cell .product2 h3, .heroes-carousel .carousel-cell .product h3, .catalogos-carousel .carousel-cell .product h3, .productos-carousel .carousel-cell .product h3, .catalogo-carousel .carousel-cell .product h3 {
    font-size: 22px;
  }

  .preload-moovie-logo::after {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .descargar-wrap header h3 {
    font-size: 10px;
  }

  .catalogo-wrap header h3 {
    font-size: 12px;
  }
}
.btn-mas-videos {
  content: " ";
  position: absolute;
  z-index: 1;
  top: 53%;
  padding-bottom: 4.5%;
  transform: translateY(-50%);
  /* left: 50%; */
  right: 2%;
  width: 16%;
  display: block;
  height: 0;
  background: url(../assets/images/btnSeeProduct.png) no-repeat scroll 0 0 transparent;
  background-size: contain;
  display: none;
}

/*# sourceMappingURL=styles.css.map */
