@charset "utf-8";

/* CSS Document */
/* #olderbrowser {
  display: block;
  width: 100%;
  position: fixed;
  text-align: center;
  top: 0;
  font-size: 20px;
  z-index: 1100;
  color: red;
  height: 100%;
  background: #000000;
  bottom: 0;
}
.ie-quote {
  margin-top: 15%;
}
.ie-quote p {
  padding-top: 35px;
} */
/*== IE Block Code Ends ==*/
* {
  margin: 0px;
  padding: 0px;
}

html {
  width: 100%;
  height: 100%;
  -ms-overflow-style: none;
  /*IE and Edge */
  scrollbar-width: none;
  overflow-x: hidden;
}

/*
html{
	overflow:hidden;
overflow-y: scroll;
}
*/
body {
  font-family: "Roboto", serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  position: relative;
  background: #000000;
  overflow: hidden;
  overflow-y: auto;
  -ms-overflow-style: none;
  /*IE and Edge */
  scrollbar-width: none;
  /*  min-height: 100%;*/
}

body::-webkit-scrollbar {
  width: 0 !important
}

.bodyScrollPause {
  overflow-y: hidden;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0);
}

a,
a:hover,
a:active,
a:focus {
  border: none;
  outline: none;
  text-decoration: none;
}

h1 {
  margin: 0;
}

.device {
  display: none
}

.outer {
  display: table;
  position: fixed;
  height: 100%;
  width: 100%;
}

.middle {
  display: table-cell;
  vertical-align: middle;
}

#onetrust-banner-sdk {
  position: fixed !important;
}

/*===========ANIMATED CLASSES==========================*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes bounceInDown {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

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

@keyframes bounceInDown {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

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

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

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

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

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

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

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

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

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

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

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

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

/* FadeInRight */
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

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

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

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

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.fade-in {
  opacity: 0;
  transition: opacity 250ms ease-in;
}

.fade-in.appear,
.fadeInUp .appear {
  opacity: 1;
}

.from-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.from-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.from-left,
.from-right,
.fade-in {
  transition: opacity 250ms ease-in, -webkit-transform 400ms ease-in;
  transition: opacity 250ms ease-in, transform 400ms ease-in;
  transition: opacity 250ms ease-in, transform 400ms ease-in, -webkit-transform 400ms ease-in;
  opacity: 0;
}

.from-left.appear,
.from-right.appear {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

/*===========ANIMATED CLASSES ENDS HERE================*/
.sonyheader {
  padding: 5px 10px;
  background: black;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sonyheader img {
  height: 15px;
}

.outer {
  display: table;
  position: fixed;
  height: 100%;
  width: 100%;
}

.middle {
  display: table-cell;
  vertical-align: middle;
}

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

@-webkit-keyframes bounceInDown {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

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

@keyframes bounceInDown {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

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

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

/*=== Scroll Indicator Animation Ends ===*/
.scrollIndicator {
  display: block;
  width: 100%;
  align-self: flex-end;
  width: 70%;
}

.scrollIndicator .mouse_scroll {
  display: block;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  /* border: 1px solid #ffffff; */
  -webkit-animation: bounce 2s infinite 1.3s;
  animation: bounce 2s infinite 1.3s;
  cursor: pointer;
}

.m_scroll_arrow1,
.m_scroll_arrow2,
.m_scroll_arrow3 {
  display: block;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: 0 auto;
}

.m_scroll_arrow1 {
  margin-top: 5px;
  width: 8px;
  height: 8px;
}

.m_scroll_arrow2 {
  margin-top: -2px;
  width: 10px;
  height: 10px;
}

.m_scroll_arrow3 {
  margin-top: -4px;
  width: 12px;
  height: 12px;
}

.m_scroll_arrow1,
.m_scroll_arrow2,
.m_scroll_arrow3 {
  -webkit-animation: mouse-scroll 1s infinite;
  -moz-animation: mouse-scroll 1s infinite;
  animation: mouse-scroll 1s infinite;
}

.m_scroll_arrow1 {
  -webkit-animation-delay: 1.1s;
  -moz-animation-delay: 1.1s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  animation-delay: alternate;
}

.m_scroll_arrow2 {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  -webkit-animation-direction: alternate;
  animation-delay: 1.2s;
  animation-direction: alternate;
}

.m_scroll_arrow3 {
  -webkit-animation-delay: 1.3s;
  -moz-animation-delay: 1.3s;
  -webkit-animation-direction: alternate;
  animation-delay: 1.3s;
  animation-direction: alternate;
}

@-webkit-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

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

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/*=== Scroll Indicator Animation Ends ===*/
.fixedBody {
  overflow: hidden !important;
}

.wrapper {
  display: none;
  position: relative;
}

#mobile_rotate {
  display: none;
}

.device {
  display: none;
}

.siteBg {
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
/*  background-image: url(../images/bg.jpg);*/
  background-color: #000;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 23% top;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.opeq__overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.00);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.siteBg video {
  position: relative;
  min-width: 100%;
  height: 100%;
  background-size: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.header,
.footer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /*  background: #000000;*/
  text-align: center;
  z-index: 9;
}

.blackBg {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 0;
  -webkit-transition: background-color 500ms linear;
  -moz-transition: background-color 500ms linear;
  -o-transition: background-color 500ms linear;
  -ms-transition: background-color 500ms linear;
  transition: background-color 500ms linear;
  /*  height: 50px;*/
}

 .nav-item a:not([href]):not([tabindex]), .nav-item a:not([href]):not([tabindex]):focus, .nav-item a:not([href]):not([tabindex]):hover {
  color: #010101;
}

.share-container {
  display: inline-block;
  /* background: #d84f09; */
  /* padding: 5px 10px; */
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-radius: 8px;
  position: fixed;
  right: 40px;
  top: 13px;
  padding-top: 2.5px;
}

.share-container #btnShare {
  color: #FFFFFF;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.2s;
}

.share-container #btnShare:hover {
  opacity: 0.8;
}

.share-container span:first-child {
  margin-right: 2px;
}

.share-container span img {
  height: 25px;
  margin: 5px;
  padding: 4px;
}

#closeShare {
  position: absolute;
  top: 7px;
  right: 10px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

#closeShare:hover {
  opacity: 0.6;
}

#closeShare span {
  display: block;
  position: absolute;
  height: 2px;
  width: 70%;
  background: #000000;
  opacity: 1;
  left: 4px;
  top: 13px;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  transition: .25s ease-in-out;
}

#closeShare span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#closeShare span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.billing-container {
  margin: 1% 0 1.5%;
}

#containerShare {
  position: absolute;
  right: 3px;
  width: 160px;
  height: auto;
  padding: 10px;
  /*background: #233433;*/
  background: #fff;
  color: #ffffff;
  text-align: left;
  display: none;
  z-index: 9999;
  border: 1px solid #000;
  border-radius: 12px;
  top: 75px;
}

#containerShare a {
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 5px;
}

#containerShare a img {
  height: 20px;
}

#containerShare a:last-child {
  margin-bottom: 0;
}

#containerShare p {
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 17px;
  /*color: #ffffff;*/
  color: #000000;
}

.hashtag {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
   font-size: 15px; 
    display: inline-flex;
}

.social-container {
  width: 100%;
  transition: top 0.3s;
  display: flex;
  text-align: center;
  justify-content: center;  
  margin: 0 auto;
  max-width: 200px;

}

.social-container a {
  display: inline-block;
  width: 33.33%;
  /*  float: left;*/
  background: #000000;
  padding: 6px 0 6px !important;
  margin: 0;
  min-width: 40px;
}

.social-container img {
  width: auto;
  height: 20px;
}

.followContainer {
  display: inline-block;
  position: relative;
}

.fb {
  background: rgb(24, 119, 242) !important;
}

.twitter {
  background: rgb(0, 0, 0) !important;
}

.insta {
  background: #f09433 !important;
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1) !important;
}

.tiktok {
  background: rgb(0, 0, 0) !important;
}

.youtube {
  background: #ff0000 !important;
}

#navIcon {
  width: 45px;
  height: 45px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  /* background: #000000;
  border: 1px solid #ffffff;  */
  border-radius: 4px;
  margin-right: 5px;
  margin-left: 0px;
  top: 11px;
  z-index: 999;
  /* box-shadow: 0 0 12px rgb(0 0 0 / 15%), 0 0px 12px rgb(0 0 0 / 15%), inset 0 0 12px 4px rgb(0 0 0 / 30%); */
  position: fixed;
  right: 0px;

  /* display: none; */
}

#navIcon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 24px;
  background: #ffffff;
  border-radius: 5px;
  opacity: 1;
  left: 0;
  margin: 0 auto;
  right: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

/*.noscroll #navIcon span {
  background: #05a4f6 !important;
}
.noscroll #navIcon.open span {
  background: #fff !important;
}
.noscroll .share-container span img {
  -webkit-filter: invert(0%) !important;
  filter: invert(0%) !important;
}*/
.open span {
  background: #fff !important;
}

#navIcon span:nth-child(1) {
  top: 11px;
}

#navIcon span:nth-child(2) {
  top: 18px;
}

#navIcon span:nth-child(3) {
  top: 25px;
}

#navIcon.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#navIcon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#navIcon.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

nav.activatedMenus {
  right: 0;
  transition: 0.4s ease;
}

.nav-container {
  border-bottom: none;
}

.nav-container {
  position: fixed;
  background: #0d0e0e;
  width: 280px;
  height: 100%;
  right: -280px;
  z-index: 99;
  top: 0;
  overflow-y: auto;
  transition: 0.4s ease;
  /* padding-bottom: 5%; */
}

.nav-container.nav-main.toggle-nav {
  left: 0;
  z-index: 10;
}

.nav-container .nav-ul {
  width: 100%;
  margin: auto;
  padding-top: 120px;
}

.nav-container .nav-item{
  margin: 0;
  display: block;
}

.nav-container a {
  padding: 12px 20px;
  color: #ffffff !important;
  transition: padding 0.5s ease;
  text-decoration: none !important;
  outline: none !important;

}

.nav-container a:hover {
  background: #d22f21;
  color: #ffffff;
}

.hashtag a:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #ffffff;
}

.nav-item a.active-nav, .nav-item a.active {

  color: #fff !important;
  background: #d22f21;

}

.declaimer {
  position: absolute;
  margin: 0;
  font-size: 8px;
  bottom: 2vh;
  right: 15px;
  /*    width: 13vw;*/
  font-family: "Arial", "sans-serif";
}

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

.footer {
  top: auto;
  bottom: 0;
  background: #000000;
  font-size: 9px;
  padding: 5px 0;
  color: rgb(224, 226, 230);
  z-index: 2000;
  /* text-transform: uppercase;  */
}


.audioplayer {
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  display: none !important;
  /*   display: flex;*/
  align-items: center;
  cursor: pointer;
  margin: auto 0;
  /*  display: none !important;*/
}

footer .audioplayer .audio-button {
  transition: opacity .5s 0s;
  display: inline-block;
  width: auto;
  height: auto;
  opacity: 1;
  pointer-events: all
}

footer .audioplayer .audio-button {
  pointer-events: none !important;
  opacity: 1;
}

footer .audioplayer .audio-button .bars-wrapper {
  white-space: nowrap;
  height: 20px;
  overflow: visible;
  transform: rotateX(180deg);
}

.bar {
  transition: box-shadow .5s cubic-bezier(.77, 0, .175, 1) 0s;
  display: inline-block;
  float: left;
  width: 3px;
  height: 20px;
  margin-right: 3px;
}

.audioplayer .audio-button .bars-wrapper .bar {
  background-color: #a60025;
  box-shadow: 0 0 0 #a60025;
}

.bugs img {
  max-width: 100%;
  margin: 15px auto;
  min-width: 250px;
}

.footer-links a {
  display: inline-block;
  color: rgb(224, 226, 230);
  margin: 0 5px;
}

.footer-links a:hover,
#btnCredits:hover,
#btnCreditsIntro:hover {
  color: #ffffff;
}

#containerCredits,
#containerCreditsIntro {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px 0 5px;
  background: #000;
  text-align: center;
  display: none;
  z-index: 5;
}

#btnCredits,
#btnCreditsIntro {
  cursor: pointer !important;
}

#btnCredits::after,
#btnCreditsIntro::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.075em;
  content: "";
  border-top: 0;
  border-right: 0.4em solid transparent;
  border-bottom: 0.6em solid;
  border-left: 0.4em solid transparent;
}

#closeCredits,
#closeCreditsIntro {
  position: absolute;
  top: 7px;
  right: 10px;
  width: 25px;
  height: 25px;
  border: 1px solid #ffffff;
  cursor: pointer;
  opacity: 0.7;
}

#closeCredits:hover,
#closeCreditsIntro:hover {
  opacity: 1;
}

#closeCredits:before,
#closeCredits:after,
#closeCreditsIntro:before,
#closeCreditsIntro:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 40%;
  background: #ffffff;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-transform: translate(-50%, -50%) rotate(30deg);
  -ms-transform: translate(-50%, -50%) rotate(30deg);
  transform: translate(-50%, -50%) rotate(30deg);
}

#closeCredits:after,
#closeCreditsIntro:after {
  -webkit-transform: translate(-50%, -50%) rotate(-30deg);
  -ms-transform: translate(-50%, -50%) rotate(-30deg);
  transform: translate(-50%, -50%) rotate(-30deg);
}

.line-break,
.copyright br {
  display: none;
}

.section-wrapper {
  width: 100%;
  position: relative;
  margin: 0 auto;
}

#home {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  position: relative;
}

.home_wrapper {
  max-width: 1050px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 57%;
  height: 100%;
  /* align-items: center; */
  position: relative;
  flex-direction: row;
  flex-wrap: wrap;
  right: 2%;
  /*    margin: 0 auto;*/
  /*  overflow: hidden;*/
  /*    transform: translateX(-27vw);*/
}

/*#home > div {
  width: 100%;
}*/
.home_wrapper>h1 {
  width: 100%;
  text-align: center;
}

.home_flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  align-items: center;
}

.home_flex h1 {
  margin-left: auto;
}

.home-content {
  text-align: center;
  width: 100%;
  max-width: 1600px;
}

.home-content,
.scrollIndicator {
  margin: 0 auto;
}

.home-content p {
  font-size: 1em;
  color: #fff;
}

.home-content p a {
  text-decoration: underline;
  color: #ffbf24;
}

.movie-tt {
  max-height: 45vh;
  max-width: 45%;
  /* position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);*/
  margin: 0 auto;
}

.movie-tagline {
  position: absolute;
  top: 5%;
  max-width: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
  max-height:9vh;
}

.type-text {
  margin: 5px auto;
  max-width: 26%;
  /* margin-bottom: 0.5%;*/
}

.sweeps_tout {
  position: absolute;
  /* right: 12px; */
  right: 1vh;
  bottom: 12px;
  /* width: 300px; */
  width: 210px;
  max-width: 15vw;
  /*    z-index: 10;*/
}

.sweeps_tout a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #fff !important;
}

.sweeps_tout img {
  border: 2px solid #a60025;
  border-radius: 0.3em;
  transition: all 0.4s;
}

.sweeps_tout img:hover {
  transform: scale(0.95);
}

.sweeps_tout span {
  color: #ffffff;
  font-size: 0.70em;
  font-weight: 400;
  display: block;
  text-align: center;
  margin-top: 0.4rem;
}

.sweeps_section_tout {
  transition: all 0.4s;
}

.tout_wrapper {
  position: absolute;
  top: 8%;
  left: 2%;
  max-width: 200px;
}

.tout_wrapper img {
  border: 2px solid #FFFFFF;
  border-radius: 8px;
}

/*.sweeps_section_tout:hover {
  transform: scale(1.05);
}*/
.sweepstakes_content {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 40px;
  /*
  width: 1100px;
  max-width: 100%;
*/
}

.sweepstakes_line1 {
  display: block;
  margin: 0 0 0;
  padding: 1em 0 0em 0;
  text-align: center;
  /*  text-transform: uppercase;*/
  font-size: 2.2rem;
  color: #05a4f6;
  font-weight: 900;
  text-transform: uppercase;
  line-height: normal;
}

.sweepstakes_line1 sup {
  font-size: 50%;
  vertical-align: baseline;
  position: relative;
  top: -1.2em;
}

/*.sweepstakes_line1 a {
  color: #08a973;
}
.sweepstakes_line1 a:hover {
  color: rgba(255, 152, 0, 0.80);
}*/
.sweepstakes_line2 {
  display: block;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem 0 0 0;
  font-size: 1.34rem;
  color: #ffffff;
  font-weight: 400;
}

.sweepstakes_line3 {
  display: block;
  margin-top: 0rem;
  margin-bottom: 1.3rem;
  text-transform: uppercase;
  text-align: center;
  padding: 0;
  font-size: 1.1rem;
  color: #FFFFFF;
}

.sweepstakes_abr_line {
  display: block;
  font-size: 11px;
  line-height: 13px !important;
  color: #FFFFFF;
  margin: 0 0 1.5rem 0;
  padding: 0 8rem;
}

.sweepstakes_abr_line a {
  color: #52c4ff;
}

.enter_btn {
  width: 200px;
  margin: 0 auto;
  display: inline-block;
  background-color: #05a4f6;
  border: 1px solid #FFF;
  -webkit-box-shadow: inset 0 0 20px #000;
  box-shadow: inset 0 0 20px #000;
  cursor: pointer;
  letter-spacing: 1px;
  padding: 8px;
  margin-top: 0.25rem;
  border-radius: 8px;
  border-color: #FFFFFF !important;
  font-size: 1.2rem;
  color: #ffffff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.enter_btn:hover {
  color: #FFFFFF;
}

.enter_btn:focus {
  color: #FFFFFF;
}

.release-date {
  max-width: 62vh;
  margin: 2vh auto;
}

.scrollIndicator {
  width: 100%;
  max-width: 100%;
  /* position: absolute;
  bottom: 0; */
}

.social-container-bottom {
  margin-bottom: 15px;
  margin-top: 5px;
}

.social-container-bottom a {
  display: inline-block;
  margin: 0 7px;
}

.social-container-bottom img {
  height: 25px;
  width: auto;
  /*
  -webkit-filter: invert(100%);  Safari/Chrome 
  filter: invert(100%);
*/
}

.video-tout {
  width: 32vh;
  max-width: 250px;
  position: absolute;
  right: 2%;
  bottom: 3%;
  /*  transform: translateX(-21%) translateY(0%);*/
  cursor: pointer;
  padding: 1px 0;
}

.video-tout img {
  border: 2px solid #92c63a;
  box-shadow: 0px 0px 10px rgb(148 199 58);
  border-radius: 8px;
}

.video-tout:hover img {
  transition: 300ms;
  -webkit-transition: 300ms;
  transform: scale(1.02);
  transition-timing-function: ease;
  ;
}

.ytbvideo img {
  display: block;
  background: #FFFFFF;
  margin: 0 auto;
  height: 100%;
  /*    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    max-width: inherit;*/
}

#youtubeVideointro img {
  height: 100%;
}

.cta-wrapper {
  text-align: center;
}

.cta-btn {
  box-shadow: inset 0 0 15px #560700;
    background-position: center;
    background-size: cover;
    background-color: #d22f21;
    border: 1px solid #d22f21;
  width: 100%;
  max-width: 200px;
  height: 2.5rem;
  display: inline-flex;
  overflow: hidden;
  margin: 0.5vh 7px 1vh;
  color: #ffffff;
  vertical-align: middle;
  border-radius: 30px;
  cursor: pointer;
}

.cta-btn-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit !important;
  padding-bottom: 1px;
}

.cal_container {
  margin-top: 0;
  display: flex;
  position: relative;
  height: 100%;
}

.save-btn-wrapper {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}

.cta-save-btn {
  height: 100%;
  position: relative;
  z-index: 1;
  font-weight: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 0px;
}

.cal_container {
  margin-top: 0;
  display: flex;
  position: relative;
  height: 100%;
  text-align: center;
}

.cal_container div {
  position: relative;
  width: 10px;
  min-width: 33.3333%;
  padding: 3.1% 0;
}

.cal_container div img {
  max-width: 25px;
  margin: 0 auto;
  vertical-align: middle;
}

.cal_container div:nth-child(1) {
  background-color: #e6e6e6;
}

.cal_container div:nth-child(2) {
  background-color: #eb3b49;
}

.cal_container div:nth-child(3) {
  background-color: #0072c6;
}

.section-container {
  padding: 3vh 15px;
  position: relative;
  z-index: 8;
  max-width: 60vw;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.getTickets {
  position: fixed;
  left: 0px;
  top: 10px;
  opacity: 0;
  transition: all .8s;
  max-width: 175px;
  height: 2.5rem;
  display: none;
}

.synopsis__poster {
  text-align: center;
}

.synopsis__poster>img {
  border: 2px solid #d22f21;
}

.synopsis__poster a {
  padding: 8px 20px;
  display: inline-block;
  background: #d22f21;
  border-radius: 15px;
  margin-top: 15px;
  border: 1px solid #d22f21;
  color: #fff;
  vertical-align: middle;
}

.synopsis__poster a span {
  display: inline-block;
  vertical-align: middle;
  margin-left: 7px;
}

.synopsis__poster a img {
  max-width: 20px;
}

#home .section-container {
  align-items: flex-end;
}

.section-container h2 {
  font-size: 40px;
  font-weight: 900 !important;
  text-align: center;
  color: #d22f21;
  margin-bottom: 1em;
  /*  text-shadow: 2px 2px 10px #b30000;*/
}

.section-container h3 {
  font-size: 18px;
  font-weight: 600 !important;
  text-align: center;
  color: #FFFFFF;
  margin-top: 1em;
  /* text-shadow: 2px 2px 10px #b30000; */
}

.section-container h2 img {
  max-width: 100%;
}

.section-container p {
  color: #FFFFFF;
  /*text-align: justify;*/
  font-weight: 600;
}

#trailer,
#behindthescenes,
#funactivities {
  /*  background: url("../images/trailer_bg.jpg") no-repeat center; */
  background-color: #000;
  /*  background-size: cover;*/
}

#trailer .section-container {
  padding-top: 5%;
  padding-bottom: 5%;
}

.ytimage {
  margin-bottom: -57.25%;
  max-width: 100%;
  height: auto;
  display: block;
}

.video-holder {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000000;
  border: #cdcdcd solid 1px;
  overflow: hidden;
  margin-bottom: 10vh;
}

.video-holder-two {
  margin-bottom: 0;
}

.video-holder video,
.video-holder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-thumb p {
  font-size: 12px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.video-thumb {
  width: 100%;
  margin-top: 15px;
}

.video-thumb ul {
  display: flex;
  /*  justify-content: space-between;*/
  /*default setting for multiple thumbs*/
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.video-thumb ul li {
  display: block;
  margin-right: 15px;
  position: relative;
  cursor: pointer;
  /*  min-width: 25%;*/
  flex-basis: 25%;
}

.video-thumb ul li:last-child {
  margin-right: 0;
}

.video-thumb a {
  display: grid;
  border: #ffffff solid 1px;
  cursor: pointer;
}

.video-thumb .active {
  border: #f5a134 solid 1px;
}

.video-title {
  font-size: 14px;
  margin: 0 auto;
  text-align: center !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: absolute;
  background: rgba(0, 0, 0, 0.90);
  height: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

.video-thumb li:hover>.video-title {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

#synopsis {
  background: #000000;
}

#sweepstakes {
  background: #000;
}

#synopsis .section-container {
  padding-bottom: 5%;
}

.cast_crew_wrapper {
  width: 100%;
  color: #f1e6de;
  font-size: 17px;
  display: flex;
}

.cast_crew_wrapper .synopsis-container {
  width: 40%;
}

.cast_crew_wrapper .synopsis__text {
  width: 60%;
  padding: 0em 2em;
}

.left-content,
.right-content {
  float: left;
  width: 50%;
}

.left-content {
  color: #d22f21;
  font-weight: 600 !important;
}

.right-content {
  float: right;
  text-transform: none;
}

#modalTrailer {
  padding: 0 !important;
}

#modalTrailer .close {
  padding: 8px 0px 10px;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 1px;
  cursor: pointer;
  outline: none !important;
  text-shadow: none;
  opacity: 1;
}

#modalTrailer .close:hover {
  opacity: 1;
}

#modalTrailer .modal-dialog {
  max-width: none;
  margin: 0;
  border-radius: 0;
  border: 0;
  background: rgba(17, 14, 14, 1);
  width: 100%;
  height: 100%;
}

#modalTrailer .modal-content,
#modalTrailer .modal-header {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 0;
}

#modalTrailer .video-player {
  padding: 0;
  height: calc(100vh - 90px);
  /*height: calc(100vh - 80px);*/
}

.embed-responsive {
  height: 100% !important;
}

#modalTrailer video {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
  display: block;
}

#modalLoader .loader-container {
  position: fixed;
  width: 100%;
  max-width: 100%;
  margin: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.loader-container>div {
  position: relative;
}

#modalLoader img {
  max-width: 100%;
  min-width: 200px;
}

.ytbvideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*.video_thumb {
  border: 2px solid #9fcc40;
}*/
#loaderText {
  color: #fff;
  position: absolute;
  bottom: 10px;
  transform: translateX(-50%);
  left: 50%;
  /* font-size: 13px;  */
}

.lds-default {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
  margin-top: 15px;
}

.lds-default div {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: lds-default 1.2s linear infinite;
}

.lds-default div:nth-child(1) {
  animation-delay: 0s;
  top: 29px;
  left: 53px;
}

.lds-default div:nth-child(2) {
  animation-delay: -0.1s;
  top: 18px;
  left: 50px;
}

.lds-default div:nth-child(3) {
  animation-delay: -0.2s;
  top: 9px;
  left: 41px;
}

.lds-default div:nth-child(4) {
  animation-delay: -0.3s;
  top: 6px;
  left: 29px;
}

.lds-default div:nth-child(5) {
  animation-delay: -0.4s;
  top: 9px;
  left: 18px;
}

.lds-default div:nth-child(6) {
  animation-delay: -0.5s;
  top: 18px;
  left: 9px;
}

.lds-default div:nth-child(7) {
  animation-delay: -0.6s;
  top: 29px;
  left: 6px;
}

.lds-default div:nth-child(8) {
  animation-delay: -0.7s;
  top: 41px;
  left: 9px;
}

.lds-default div:nth-child(9) {
  animation-delay: -0.8s;
  top: 50px;
  left: 18px;
}

.lds-default div:nth-child(10) {
  animation-delay: -0.9s;
  top: 53px;
  left: 29px;
}

.lds-default div:nth-child(11) {
  animation-delay: -1s;
  top: 50px;
  left: 41px;
}

.lds-default div:nth-child(12) {
  animation-delay: -1.1s;
  top: 41px;
  left: 50px;
}

@keyframes lds-default {

  0%,
  20%,
  80%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }
}

#gallery {
  background-color: #000000;
}

/*#gallery .section-container h2 {
  color: #5c39ad;
}*/

#gallery .section-container>div,
#characterart .section-container>div {
  padding-bottom: 20px;
  width: 100%;
}

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

#galleryThumb {
  padding-bottom: 0 !important;
}

#galleryThumb .slick-slide {
  padding: 5px;
  cursor: pointer;
}

#galleryThumb .slick-current div img {
  border: #f4d46a solid 1px;
}

#characterart {
  background: #141414;
}

.characters {
  width: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 1em 0em;
}

.characters h3 {
  color: #f3d96c;
  font-size: 1.5em;
  font-weight: bold;
}

.characters-bio {
  background: rgba(0, 0, 0, 0.00);
  border: #f4d46a solid 2px;
  border-radius: 5px;
  padding: 1em;
  font-size: 1em;
  margin: 5px;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-color: #f2be96 #727272;
  scrollbar-width: thin;
}

.characters-bio::-webkit-scrollbar {
  width: 5px;
}

.characters-bio::-webkit-scrollbar-track {
  background-color: #727272;
  border-radius: 12px;
}

.characters-bio::-webkit-scrollbar-thumb {
  background-color: #f2be96;
  border-radius: 12px;
}

.partners-row {
  justify-content: center;
}

.partners-wrapper a {
  /* border: #FFFFFF solid 1px; */
  display: inline-block;
  margin: 1em 0;
}

.partners_col {
  display: inline-block;
}

.partners-btn {
  background: url("../images/btn_bg.png") no-repeat;
  background-position: center;
  background-size: cover;
  /* box-shadow: inset 0 0 15px #62385c;
  background-color: #b589ae; */
  border: 1px solid transparent;
  width: 100%;
  max-width: 220px;
  /* border-radius: 30px; */
  padding: 7px 20px 10px 20px;
  text-align: center;
  color: #fff !important;
  text-transform: uppercase;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
  margin: 0 auto;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-initialized .slick-slide>div {
  display: flex;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-slider button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.slick-slider .slide-arrow {
  position: absolute;
  top: 50%;
  margin-top: -10px;
}

.slick-slider .prev-arrow {
  left: -30px;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 15px solid #d22f21;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  /*  display:none !important;*/
}

.slick-slider .next-arrow {
  right: -30px;
  width: 0;
  height: 0;
  border-right: 0 solid transparent;
  border-left: 15px solid #d22f21;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  /*  display:none !important;*/
}

.slick-slider .synopsis-arrow {
  position: absolute;
  top: inherit;
  margin-top: 10px;
  bottom: -2em;
  z-index: 1;
}

.slick-slider .synopsis-prev-arrow {
  left: 43%;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 15px solid #ffffff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.slick-slider .synopsis-next-arrow {
  right: 43%;
  width: 0;
  height: 0;
  border-right: 0 solid transparent;
  border-left: 15px solid #ffffff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.quiz-tout-wrapper {
  position: absolute;
  right: 20px;
  bottom: 1%;
  max-width: 25vw;
  width: 360px;
}

.quiz-tout-wrapper img {
  border: 2px solid #fe590b;
  border-radius: 0.5em;
  transition: all 0.4s;
}

.quiz-tout-wrapper img:hover {
  transform: scale(0.95);
}

.introTrailer-cta {
  display: none;
}

.activity-wrapper>.row {
  padding-bottom: 1em;
  padding-top: 1em;
}

.activity-wrapper>.row:first-child {
  padding-top: 0;
}

.activity-wrapper h3 {
  min-height: 1vh;
  font-size: 1.5em !important;
}

#ownitnow {
  /* background: url("../images/dvd_bg.jpg") no-repeat center; */
  background-color: #000000;
  background-size: cover;
  color: #FFFFFF;
}

#ownitnow .preorder_content {
  background: rgba(18, 57, 80, 0.8);
  border: 2px solid #598e88;
  border-radius: 12px;
  padding: 0 20px;
}

#ownitnow .tt-dvd {
  margin: 1em auto;
}

#ownitnow .dvd-releaseDate {
  font-size: 1.5em;
}

#ownitnow .digital,
#ownitnow .blu-ray {
  margin: 2em auto;
}

#ownitnow h3 {
  font-size: 1.3em;
}

#ownitnow .movie-preorder {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#ownitnow a img {
  margin: 5px;
}

.disable-btn {
  display: none;
}

.personal_info img {
  width: 32px;
  margin-left: 0.3rem;
  margin-bottom: 3px;
}

.kids-mode {
  cursor: pointer;
}

.modal-kids-mode {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

.warning-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 30%;
  width: 30%;
  text-align: center;
}

.warning-popup-body {
  border: 1px solid #fd8d02;
  padding: 2%;
  background: #000;
  color: #ffffff;
  font-size: 0.8em;
}

.btn-div {
  margin: 2% 0;
}

#ctnBtn,
#gobckBtn {
  border: 1px solid #fff;
  padding: 1%;
  color: #FFF;
  background: #fd8d02;
  margin-right: 2%;
}

@media screen and (max-width: 1680px) {
  .section-container {
    padding: 5vh 15px;
  }

  .sweepstakes_abr_line {
    padding: 0px 6rem;
  }

  .activity-wrapper h3 {
    font-size: 1.2em !important;
  }
}


  @media screen and (max-width: 1600px) and (max-height: 800px) {
  .section-container {
    padding: 8vh 15px;
  }

  /* .movie-tt {
    max-width: 45%;
  } */
}

@media screen and (max-width: 1366px) {

  /*  
  .siteBg {
    background-size: auto 115%;
  background-position: center 80%;
  }
*/
  .section-container {
    max-width: 57vw;
  }

  .section-container h2 {
    font-size: 26px;
  }

  .activity-wrapper h3 {
    font-size: 1em !important;
  }

  .cast_crew_wrapper {
    font-size: 14px;
  }

  .home-content>h1 {
    /*    max-width: 65%;*/
  }

  .cta-btn {
    /* max-width: 140px; */
    font-size: 12px;
    height: 2.5rem;
  }

  .getTickets {
    max-width: 165px;
    height: 2.2rem;
  }

  .characters img {
    max-width: 40%;
  }

  .sweepstakes_line2 {
    font-size: 1.2rem;
  }

  .activity-wrapper h3 {
    font-size: 0.8em !important;
  }
}
@media screen and (max-width: 1366px) and (max-height: 800px) {
  .movie-tt {
    max-height: 40vh;
  } 
  .home_wrapper{
    right:0;
  }
}
@media screen and (max-width: 1280px) {
  .movie-tt {
    /* max-width: 60%;*/
  }
}

@media screen and (device-width: 1280px) and (device-height: 1024px) and (orientation: landscape),
screen and (device-width: 1400px) and (device-height: 1050px) and (orientation: landscape),
screen and (device-width: 1280px) and (device-height: 960px) and (orientation: landscape),
screen and (device-width: 1152px) and (device-height: 864px) and (orientation: landscape),
screen and (device-width: 1180px) and (device-height: 820px) and (orientation: landscape) {

  .type-text {
    max-width: 65%;
  }
  .home_wrapper{
    right:0;
  }
  .movie-tt {
    /* max-width: 80%;*/
  }

  .siteBg {
    /* background-position: 45% top; */
  }

  .type-text {
    max-width: 65%;
  }

  /* .release-date {
    max-width: 47vh;
} */
}

@media screen and (max-height: 768px) {
  .social-container-bottom img {
    height: 20px;
  }

  .cta-btn {
    height: 2rem;
  }
}

@media screen and (max-width: 1280px) {
  .line-breaker {
    display: none;
  }

  .sweepstakes_abr_line {
    padding: 0px 4rem;
  }

  .sweeps_tout span {
    font-size: 0.65em;
  }
}

@media screen and (max-width: 1100px) {
  .sweepstakes_content {
    width: 70vw;
    margin: 0 auto 80px;
  }

  .sweepstakes_abr_line {
    padding: 0 2rem;
  }
}

@media screen and (device-width: 1280px) and (device-height: 720px) and (orientation: landscape) {}

@media screen and (max-width: 1200px),
screen and (device-width: 1138px) and (device-height: 712px) and (orientation: landscape) {

  html,
  body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-overflow-scrolling: touch;
  }

  #modalTrailer .video-player {
    height: calc(100vh - 180px);
  }

  /* .home-content, .scrollIndicator {
    width: 65%;
  } */
  .movie-tt {
    /* max-width: 80%;*/
  }

  #youtubeVideointro img {
    height: auto;
  }

  .cta-btn {
    max-width: 180px;
  }
}

@media screen and (device-width: 1280px) and (device-height: 1024px) {

  .home-content,
  .scrollIndicator {
    width: 100% !important;
  }
}

@media screen and (max-width: 1024px),
screen and (device-width:1334px) and (device-height:800px) and (orientation:landscape),
screen and (device-width:1194px) and (device-height:834px) and (orientation:landscape),
screen and (device-width:1194px) and (device-height:760px) and (orientation:landscape),
screen and (device-width: 1366px) and (device-height: 1024px) and (orientation: landscape) {
  .section-container {
    max-width: 80vw;
  }

  #youtubeVideointro img {
    height: auto;
  }

  .sweepstakes_abr_line {
    padding: 0 4rem;
  }

  .siteBg {
    /* background-position: 45% top; */
  }

  /* .cta-btn {
    max-width: 180px;
  }*/
  .type-text {
    max-width: 46%;
  }
    .movie-tagline {
  top: 6%;
}
}

@media screen and (max-width: 912px) and (orientation:portrait) {
  .siteBg {
    /*    background-image: url(../images/bg_portrait.jpg);*/
    background-size: 100% auto;
    background-color: #b6b3ee;
    background-position: center top;
  }

  #home {
    justify-content: center;
  }

  .home-content {
    width: 100%;
  }

  .home_wrapper {
    /*  left: auto;*/
    padding: 0 10px;
    /*    left: -2px;*/
    max-width: 75%;
  }

  .movie-tt {
    max-width: 100%;
    top: 5%;
    transform: none;
  }

  .desktop,
  .declaimer img {
    display: none;
  }

  .portrait {
    display: block;
  }

  .type-text {
    margin-bottom: 2%;
    max-width: 35%;
  }

  .declaimer {
    /*top: -15px;*/
    bottom: auto;
    width: auto;
    position: relative;
    right: inherit;
  }

  .d-block-mobile {
    display: block;
  }

  .cta-btn:hover {
    box-shadow: none;
  }

  .warning-popup {
    max-width: 80%;
    width: 80%;
  }

  .tt_portrait {
    max-width: 75%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 850px) and (orientation:portrait),
screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait),
screen and (device-width: 834px) and (device-height: 1194px) and (orientation: portrait) {
  .siteBg {
       background-image: url("../images/bg_portrait.jpg");
    background-color: #010b0d;
    background-size: 110% auto;
    background-position: center top;
  }
  .m_scroll_arrow1, .m_scroll_arrow2, .m_scroll_arrow3 {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
 
  #synopsis .section-container {
   /* padding-bottom: 10vh!important;*/
  }
  .home_wrapper{
    align-items: flex-end;
    width: 100%;
    max-width:100%;
      right: 0;
  }
  .movie-tagline{
    top:1%;
    max-width: 75%;
  }
  .movie-tt{
    position: relative;
    transform: none;
  }
  .scrollIndicator{
  position: relative;
  }
  .gerogia-logo {
    position: relative;
    margin: 5px 0;
    right: 0px;
  }

  .device {
    display: block;
  }

  .movie-tt {
    max-height: 26vh;
  }

  .activity-wrapper h3 {
    font-size: 0.8em !important;
  }

  #funactivities .section-container {
    padding-bottom: 10vh !important;
  }

  .desktop {
    display: none;
  }

  .section-container {
    max-width: 90%;
    min-height: inherit;
  }

  .subheader-text {
    max-width: 65%;
    top: 10vh;
  }

  .sweepstakes_line1 br {
    display: none;
  }

  #gallery .section-container {
    padding-bottom: 10vh;
  }

  .left-content {
    width: 60%;
    padding-right: 5px;
    text-align: left;
  }

  .right-content {
    width: 40%;
    text-align: left;
  }

  .quiz-tout-wrapper {
    max-width: 65%;
    position: relative;
    right: auto;
    left: auto;
    margin: 0 auto;
    margin-bottom: 5%;
  }

  .quiz-tout-wrapper img:hover {
    transform: scale(0.95);
  }

  .cta-wrapper {
    /*        margin-bottom: 5%;*/
  }

  .section-container h2 img {
    max-width: 180px;
  }

  .sweeps_tout {
    max-width: 16vw;
  }

  .sweepstakes_content {
    width: 100%;
  }

  /*
  .sweeps_tout {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: auto;
    top: 40px;
    width: 350px;
    max-width: 32vw;
    margin: 0 auto;
}
*/
  .sweeps_tout img {
    border: 1px solid #f8a947;
  }

  .sweeps_tout span {
    font-size: 0.5em;
    margin-top: 0.25rem;
    line-height: 1.2em;
  }

  /*
.tout_wrapper {
    max-width: 130px;
    top: 5%;
}
*/
  .tout_inline_mobile {
    position: absolute;
    top: 5%;
    left: 0;
    right: 0;
    text-align: center;
  }

  .sweeps_tout,
  .tout_wrapper {
    top: auto;
    left: auto;
    right: 0px;
    bottom: auto;
    max-width: 175px;
    position: absolute;
    display: inline-block;
    vertical-align: top;
    margin: 10px;
  }


  .date_portrait {
    padding-bottom: 10px;
    max-width: 60%;
  }
}

@media screen and (max-width: 800px) {
  .nav-container {
    width: 100%;
    right: -100%;
  }

  #modalTrailer .modal-content {
    height: calc(100vh - 100px);
    display: flex;
    justify-content: center;
  }

  #modalTrailer .video-player {
    height: 0 !important;
    /*top: 50%;
       transform: translateY(-50%);*/
    padding-top: 56.25%;
    flex: none;
  }

  .youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .video-tout {
    width: 26vw;
    max-width: 200px;
    bottom: 2%;
  }

  .ytbvideo:hover img {
    transform: scale(1.0);
    ;
  }
}

@media screen and (max-width: 767px) {

  #closeCredits,
  #closeCreditsIntro {
    top: 5px;
    right: 5px;
  }

  .sweepstakes_line1 {
    font-size: 1.5rem;
    padding-top: 0.5em;
  }

  .sweepstakes_line2,
  .sweepstakes_line3 {
    font-size: 0.9rem;
  }

  .sweepstakes_abr_line {
    padding: 0 2rem;
    word-wrap: break-word;
  }

  .enter_btn {
    width: 175px;
    font-size: 0.8rem;
  }
}

@media only screen and (max-device-width: 767px) and (orientation: landscape),
screen and (max-device-height: 450px) and (min-device-width: 740px) and (orientation: landscape),
screen and (device-width: 414px) and (device-height: 896px) and (orientation: landscape),
screen and (max-device-width: 450px) and (max-device-height: 1023px) and (orientation: landscape),
screen and (max-height:450px) and (orientation: landscape),
screen and (max-height: 500px) and (max-width: 1023px) and (orientation: landscape),
screen and (device-width: 780px) and (device-height: 360px) and (orientation: landscape) {

  body,
  html {
    overflow: hidden !important;
    background: #000000;
  }

  #mobile_rotate {
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-image: url(../images/rotate_device.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8999;
    display: block;
  }
}

@media screen and (max-width: 560px) {

  .siteBg {
    
     background-position: center top;
    background-color: #010b0d;
    background-size: 112% auto;
  }
  .tout_inline_mobile {
    top: 60px;
  }
  .home_wrapper{
    max-width: 100%;
  }
  .sweeps_tout,
  .tout_wrapper {
    max-width: 80px;
      top: 10vh;
        left: 1vh;
        right: auto;
        bottom: auto;
        /* max-width: 175px; */
        position: absolute;
        display: inline-block;
        vertical-align: top;
        margin: 0px;
    
  }

  .activity-wrapper h3 {
    font-size: 1.1em !important;
  }

  .activity-wrapper .row {
    padding: 0;
  }

  .section-container h3 {
    margin-top: 2em;
  }
  .movie-tagline {
    top: 1%;
    max-width: 65%;
}

}

@media screen and (max-width: 450px),
screen and (max-height: 310px) and (orientation:landscape) {
  #navIcon {
    top: 5px;
  }

  .sonyheader img {
    height: 12px;
  }

  /*
    .sweeps_tout {
        top:90px;
    }
*/
  .sony_pic_logo img {
    height: 18px;
  }

  .movie-tt {
    max-width: 80%;
    margin-top: 2%;
  }

  .audioplayer {
    /*
    top: 33px;
    bottom: auto;
    display: block;
*/
    top: auto;
    bottom: 8px;
    left: 5px;
  }

  .share-container {
    top: 7px;
  }

  #navIcon {
    margin-right: 0;
  }

  .blackBg {
    height: 45px;
  }

  .social-container-bottom img {
    height: 20px;
    width: auto;
  }

  .home-content>h1 {
    /*    max-width: 80%;*/
  }

  .cta-btn {
    max-width: 150px;
/*        font-size: 16px;*/
    height: 2rem;
    margin: 0.5vh 7px 2vh;
  }

  .getTickets {
    height: 1.6rem;
    max-width: 122px;
  }

  .section-container {
    min-height: 100vh;
    padding: 5vh 15px !important;
  }

  #funactivities .section-container {
    padding-bottom: 15vh !important;
  }

  .section-container h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .section-container p {
    font-size: 14px;
    /*  letter-spacing: -1px !important; */
  }

  .cast_crew_wrapper {
    width: 100%;
  }

  .video-thumb ul {
    display: inline-flex;
    /*    justify-content: flex-start;*/
    justify-content: center;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .video-thumb ul li {
    flex-basis: 40%;
    min-width: 40%;
  }

  #gallery .section-container {
    /*min-height: calc(100vh - 300px); */
    min-height: calc(100vh - 500px);
    padding-bottom: 10vh !important;
  }

  #trailer .section-container,
  #behindthescenes .section-container {
    min-height: calc(100vh - 300px);
    padding: 5% 15px 0 !important;
  }

  #gallery .section-container>div {
    padding-bottom: 10px;
    width: 100%;
  }

  #galleryThumb {
    width: 80% !important;
  }

  /*    .section-container{
        min-height: 100vh;
    }*/
  #galleryThumb .slick-slide {
    padding: 0 2px;
  }

  .footer-links a {
    font-size: 8px;
    margin: 0 3px;
  }

  .copyright {
    line-height: 9px;
    font-size: 6px;
    margin-top: 2px;
    padding: 0 15%;
  }

  .copyright br {
    display: block;
  }

  .getTickets {
    z-index: 12;
  }

  #mobile_rotate {
    display: block;
  }

  .introTrailer-cta {
    display: block;
    margin-top: 5%;
  }

  .introTrailer-cta img {
    max-width: 30%;
  }

  .characters {
    flex-direction: column;
  }

  .cast_crew_wrapper {
    flex-direction: column;
  }

  .cast_crew_wrapper .synopsis-container,
  .cast_crew_wrapper .synopsis__text {
    width: 100%;
  }

  .cast_crew_wrapper .synopsis__text {
    padding: 0.5em 0em;
  }

  .characters-bio {
    margin-top: 1em;
  }

  .partners-row div {
    width: 50%;
  }

  #characterart .slick-slider .slide-arrow {
    top: 10%;
  }

  #characterart .slick-slider .prev-arrow {
    left: 0px;
    z-index: 1;
  }

  #characterart .slick-slider .next-arrow {
    right: 0px;
  }

  .footer-links a:hover,
  #btnCredits:hover,
  #btnCreditsIntro:hover {
    color: rgb(224, 226, 230);
  }

  #ownitnow .section-container {
    padding: 10vh 0 !important;
  }

  #ownitnow .dvd-releaseDate {
    font-size: 1.2em;
  }

  #ownitnow .tt-dvd {
    max-width: 250px;
  }

  #ownitnow .packaged {
    font-size: 1em;
  }

  #ownitnow .movie-preorder img {
    max-width: 44%;
  }

  /*  #modalTrailer .modal-content {
    height: calc(100vh - 100px);
  } */
  #modalLoader img {
    max-width: 220px;
  }

  #behindthescenes .text {
    padding: 5px;
    font-size: 8px;
  }

  /*
.tout_wrapper {
    max-width: 130px;
    top: 7%;
}
*/
  .tt_portrait {
    max-width: 85%;
  }
}

@media screen and (min-width:2400px) {
  .gallery-img img {
    width: 100%;
  }

  #youtubeVideointro img {
    height: auto;
  }
}

#tickets {
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
}

#ticketingsectionoverlay {
  /* position: fixed;
  height: 100vh;
  width: 100%; 
  z-index: 9;  
  top: 0;
  background: rgba(0, 0, 0, 1); */
}

#gettickets {
  /* height: calc(100vh - 54px);
  width: calc(100% - 54px); */
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 1);
  z-index: 9;
  margin: 0px;
  /* border: 2px solid #df9a4d; */
}

/* to the body element */
.noscroll {
  overflow: hidden !important;
  height: 100% !important;
}

@media screen and (device-width:375px) and (device-height:667px) and (orientation: portrait) {}

@media screen and (device-width:360px) and (device-height:640px) and (orientation: portrait) {}

@media screen and (max-height: 310px) and (orientation:landscape) {
  body {
    overflow-y: scroll !important;
  }
}

@media (min-device-width: 1025px) {
  /*  .noscroll {
    padding-right: 15px;
  }*/
}

.ticketoverlay {
  position: fixed;
  /* overflow-y: scroll; */
  top: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  /* display: none; */
}

/* [aria-hidden="true"] {
  transition: opacity 1s, z-index 0s 1s;
  width: 100vw;
  z-index: -1;
  opacity: 0;
}
[aria-hidden="false"] {
  transition: opacity 1s;
  width: 100%;
  z-index: 2999;
  opacity: 1;
} */
.ticketingoverlayCloseNew {
  transition: opacity 1s, z-index 0s 1s;
  width: 100vw;
  z-index: -1;
  opacity: 0;
  display: none;
  position: relative;
}

.ticketingoverlayOpenNew {
  transition: opacity 1s;
  width: 100%;
  z-index: 8;
  opacity: 1;
  display: block;
  position: fixed;
  ;
}

.ticketoverlay {
  background: rgba(40, 40, 40, .75);
}

button {
  padding: 1.5em 4em;
  cursor: pointer;
}

pre {
  background: #fafafa;
  padding: 15px;
  border: 1px #ccd dashed;
}

pre+p {
  margin: 5vh 0;
}

.ticketingoverlayclose {
  position: absolute;
  top: 50px;
  right: 50px;
  padding: 10px;
}

.close-ticketoverlay {
  position: absolute;
  bottom: -10px;
  right: calc(50% - 25px);
  padding: 0px;
  border-radius: 50%;
  background: #000;
  border: 0px solid #fff;
  z-index: 99;
}

.close-ticketoverlay img {
  width: 50px;
}

.close-ticketoverlay:focus {
  border: 0px solid #fff;
}

.youtubewrapper {
  width: 60%;
  display: none;
  text-align: center;
  color: #ffffff;
  margin: 0 auto;
  border: #c30000 solid 1px;
  padding: 2%;
  border-radius: 12px;
}

.youtube_msg {
  font-size: 1.2em;
  margin-bottom: 2em;
  text-transform: uppercase;
}

.youtube_cta {
  background: #c30000;
  color: #ffffff;
  display: inline-block;
  padding: 0.7em 1.2em;
  border-radius: 1em;
  border: none;
}

.youtube_cta:focus {
  border: none;
  outline: none;
}

/*#videoholder1{
	
	display:none;
}*/
/* Kids Modal */

.trailer-Links .image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.video-thumb li:hover .image {
  opacity: 0.3;
}

.video-thumb li:hover .middle {
  opacity: 1;
}

.text {
  background-color: #FFFFFF;
  color: #000000;
  font-size: 14px;
  padding: 10px 15px;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.vjs-icon-placeholder,
.vjs-control-bar .vjs-time-control.vjs-time-divider,
.vjs-mouse-display,
.vjs-play-progress.vjs-slider-bar {
  opacity: 1;
  z-index: 1;
}

.video-js {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}

.vjs-nofull .vjs-fullscreen-control {
  display: none;
}

.video-js .vjs-current-time {
  display: block;
}

.video-js .vjs-time-divider {
  display: block;
}

.video-js .vjs-duration {
  display: block;
}

.video-js .vjs-remaining-time {
  display: block;
}

.video-js .vjs-load-progress {
  display: inline-block;
  background: PaleGreen;
  height: 8px;
  width: 100%;
}

.video-js .vjs-play-progress {
  display: inline-block;
  background: LightCoral;
  height: 8px;
  width: 100%;
}

.video-js .vjs-picture-in-picture-control {
  display: none;
}

.vjs-control-bar button {
  outline: none;
}

/* .video-js   .vjs-progress-holder { margin-left: 0px; margin-right: 0px; background: Blue; }
        .video-js   .vjs-loading-spinner{display: block;}
        .video-js  .vjs-progress-holder  .vjs-play-progress { display: none; } */

.disabled {
  opacity: 0.4;
}