@charset "utf-8";
/* CSS Document */
#olderbrowser {
  display: none;
  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;
}
@font-face {
  font-family: "ElanAT";
  src: url("../fonts/elanatmedium.woff2") format("woff2"), url("../fonts/elanatmedium.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
.elan-font {
  font-family: "ElanAT";
}
/*== IE Block Code Ends ==*/
* {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
*, :after, :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html, body {
/*  width: 100%;
  height: 100%;*/
  -ms-overflow-style: none; /*IE and Edge */
  scrollbar-width: none;
  overflow-x: hidden;
}
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0px;
  position: relative;
  background: #000;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-overflow-style: none; /*IE and Edge */
  scrollbar-width: none;
    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;
}
.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;
}
/* 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;
}
/*=== Scroll Indicator Animation Ends ===*/
.scrollIndicator {
  display: block;
}
.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 #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  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);
  }
}
#modalTrailer, #filmTVmodal {
  padding: 0 !important;
}
#modalTrailer .close, #filmTVmodal .close {
  padding: 8px 10px 10px;
  color: #ffffff;
  font-size: 1.2em;
  font-weight: 400;
  letter-spacing: 1px;
  cursor: pointer;
  outline: none !important;
}
#modalTrailer .close:hover, #filmTVmodal .close:hover {
  opacity: 1;
}
#modalTrailer .modal-dialog, #filmTVmodal .modal-dialog {
  max-width: none;
  margin: 0;
  border-radius: 0;
  border: 0;
  background: rgba(0, 0, 0, 1);
  width: 100%;
  height: 100%;
}
#modalTrailer .modal-content {
  height: 100%;
}
#modalTrailer .modal-content, #modalTrailer .modal-header, #filmTVmodal .modal-content, #filmTVmodal .modal-header {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 0;
}
#modalTrailer .video-player, #filmTVmodal .video-player {
  padding: 0;
  /*  height: calc(100vh - 100px);*/
}
#modalTrailer .video-player {
 /* padding-top: 38px;*/
  width: 70vw;
  margin: 38px auto 0;
}
#modalTrailer .video-player .embed-responsive {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.embed-responsive {
  height: 100% !important;
}
#modalTrailer video, #filmTVmodal video {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
  display: block;
}
#filmTVmodal, #modalTrailer {
  background: #000;
}
#filmTVmodal::-webkit-scrollbar {
  width: 0 !important
}
.filmtv-modal-dialog {
  height: auto !important;
}
#modalTrailer .modal-header, #filmTVmodal .modal-header {
  background: #171616;
  position: fixed;
  width: 100%;
  z-index: 100;
}
.filmTv-modal-container {
  width: 1400px;
  max-width: 100%;
  margin: 3em auto;
  color: #FFFFFF;
}
.filmTv-modal-content {
  margin: 0 auto;
  display: flex;
}
.filmTv-modal-container .keyart-holder img {
  display: block;
  margin: 0 auto;
}
/*.film-description-modal {
    padding:0 2em 1em;
}*/
.film-description-modal h3 {
  font-size: 16px;
}
.film-description-modal p {
  margin: 2em 0;
}
.filmTv-gallery {
  width: 100%;
  position: relative;
}
.filmTv-video-container {
  color: #FFF;
  margin: 4em auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.filmTv-video-container > div {
  flex-basis: 50%;
  padding: 1em;
}
.filmTv-video-container > div:nth-child(3) {
  margin: 2em auto;
}
.film-description-modal .buy-now-wrapper {
  margin-bottom: 2em;
  border: #FFF solid 1px;
  border-radius: 8px;
  padding: 1em;
}
.film-description-modal .buy-now-wrapper ul {
  display: flex;
}
.film-description-modal .buy-now-wrapper ul li {
  margin-right: 10px;
}
.filmTv-gallery .gallery-img img {
  max-height: 50vh;
  margin: 0 auto;
}
.filmTv-gallery .slick-slider .prev-arrow {
  z-index: 1;
}
.filmtv-wallpaper-wrapper .gallery-img {
  text-align: center;
}
.filmtv-wallpaper-wrapper .img-holder {
  display: inline-block;
}
.filmtv-wallpaper-wrapper .download__content {
  background: rgba(0, 0, 0, 0.8);
}
#filmTvgalleryDiv {
  margin-bottom: 4em;
}
#modalLoader .loader-container {
  position: fixed;
  width: 100%;
  max-width: 100%;
  margin: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.loader-container > div {
  position: relative;
}
#loaderText {
  color: #FFFFFF;
  position: absolute;
  bottom: 10px;
  transform: translateX(-50%);
  left: 50%;
}
.lds-default {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
  margin-top: 15px;
}
.lds-default div {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #9e0b0f;
  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);
  }
}
.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;
}
.disabled {
  pointer-events: none;
  cursor: default;
  /* opacity: 0.5;*/
  text-decoration: none;
}
.disabled a {
  text-decoration: none;
}
/*=== Scroll Indicator Animation Ends ===*/
.fixedBody {
  overflow: hidden !important;
}
.wrapper {
  display: none;
}
#mobile_rotate {
  display: none;
}
.device {
  display: none;
}
.siteBg {
  position: fixed;
  z-index: -1;
  height: 100%;
  width: 100%;
  background-color: #000000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.siteBg::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to top, #000000, transparent);
  z-index: 1;
}
.opeq__overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.0);
  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: 1100;
}
.blackBg {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  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;
}
.addblack{
    background: rgba(0,0,0,1.00);
}
.nav-li a:not([href]):not([tabindex]), .nav-li a:not([href]):not([tabindex]):focus, .nav-li a:not([href]):not([tabindex]):hover {
  color: #010101;
}
.share-container {
  display: inline-block;
  background: rgb(143 10 14);
  padding: 5px 10px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.share-container #btnShare {
  color: #FFFFFF;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.share-container #btnShare:hover {
  opacity: 0.8;
}
.share-container span:first-child {
  margin-right: 8px;
}
.share-container span img {
  height: 15px;
}
#closeShare {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
#closeShare:hover {
  opacity: 0.6;
}
#closeShare span {
  display: block;
  position: absolute;
  height: 2px;
  width: 70%;
  background: #FFFFFF;
  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: fixed;
  right: 15px;
  width: 200px;
  height: auto;
  padding: 10px;
  background: #181818;
  color: #ffffff;
  text-align: left;
  display: block;
  opacity: 0;
  transform: translateX(110%);
  transition: opacity .5s, transform .5s;
  z-index: 9999;
  border: 1px solid #FFFFFF;
  /*  border-radius: 12px;*/
  /*	box-shadow: inset 0 0 40px #ff0903;*/
  top: 41px;
}
#containerShare.openshare {
  transform: translateX(0);
  opacity: 1;
}
#containerShare a {
  display: inline-flex;
  margin: 5px;
  padding: 10px;
  background: #9e0b0f;
  border: 0.5px solid #9d1613;
  border-radius: 5px;
  transition: all 0.3s;
}
#containerShare a:hover {
  transform: scale(1.1);
}
#containerShare a img {
  height: 25px;
}
#containerShare a:last-child {
  margin-bottom: 0;
}
#containerShare p {
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 16px;
  color: #ffffff;
}
.hashtag {
  padding-bottom: 10px !important;
}
.social-container {
  width: 100%;
  transition: top 0.3s;
  display: flex;
  text-align: center;
  justify-content: center;
}
.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(29, 161, 242) !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;
}
#navIcon {
  width: 40px;
  height: 40px;
  -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: #9e0b0f;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  margin-left: 10px;
  top: 56px;
  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%);
}
#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;
}
#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 {
  left: 0;
  transition: 0.4s ease;
}
.nav-container {
  position: fixed;
  background: #000000;
  width: 280px;
  height: 100%;
  left: -280px;
  z-index: 99;
  top: 0;
  overflow-y: auto;
  transition: 0.4s ease;
  border-bottom: none;
  scrollbar-color: #9e0b0f #fff;
  scrollbar-width: thin;
}
.nav-container::-webkit-scrollbar {
  width: 7px;
}
.nav-container::-webkit-scrollbar-track {
  background-color: #FFFFFF;
  border-radius: 12px;
}
.nav-container::-webkit-scrollbar-thumb {
  background-color: #9e0b0f;
  border-radius: 12px;
}
.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-li {
  margin: 0;
  display: block;
}
.nav-container a {
  padding: 12px 20px;
  color: #ffffff !important;
  transition: padding 0.5s ease;
  font-weight: 700;
  text-decoration: none !important;
  outline: none !important;
}
.nav-container a:hover {
  background-color: rgba(255, 255, 255, 0);
  color: #ffffff;
}
.nav-li a.active {
  color: #FFFFFF !important;
  background: #9e0b0f;
}
.footer {
  top: auto;
  bottom: 0;
  background: #000000;
  font-size: 10px;
  padding: 5px 0;
  color: rgb(224, 226, 230);
  font-weight: 700;
  z-index: 2000;
}
.bugs img {
  max-width: 50%;
  margin: 0 auto 15px auto;
}
.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 2em;
}
#home {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  position: relative;
}
#home > div {
  z-index: 1;
}
.home-content{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.home-content > h1 {
  margin: 0 auto 2vh;
}
.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;
}
.social-container-bottom, .social-container-bottom-vr {
  margin-bottom: 20px;
  text-align: center;
}
.social-container-bottom a, .social-container-bottom-vr a {
  display: inline-block;
  margin: 0 7px;
}
.social-container-bottom img, .social-container-bottom-vr img {
  height: 25px;
  width: auto;
}
.cta-wrapper {
  text-align: center;
}
.cta-btn {
  box-shadow: inset 0 0 15px #000;
  background-color: #88090d;
  border: 1px solid #ffffff;
  width: 100%;
  max-width: 220px;
  height: 3rem;
  display: block;
  overflow: hidden;
  margin: 0 auto 3vh;
  color: #e8d5b6;
  vertical-align: middle;
  border-radius: 30px;
  cursor: pointer;
}
.cta-btn-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
.cta-btn-link:hover {
  color: #FFFFFF;
}
.cal_container {
  margin-top: 0;
  display: flex;
  position: relative;
  height: 100%;
}
.save-btn-wrapper {
  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%;
}
.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: 2.5% 0;
}
.cal_container div img {
  max-width: 30px;
  margin: 0 auto;
}
.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: 5vh 15px;
  position: relative;
  z-index: 8;
  max-width: 65vw;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
#home .section-container {
  align-items: flex-end;
}
.vr-tout-wrapper, .event-tout-wrapper{
    position: absolute;
    right: 20px;
    bottom: 2%;
    max-width: 25vw;
    width: 360px;
}
.event-tout-wrapper{
    left: 20px;
    right: inherit;
}
.vr-tout-wrapper img, .event-tout-wrapper img{
    border: 1px solid #ee3524;
    border-radius: 0.5em;
    transition: all 0.4s;
}
.vr-tout-wrapper img:hover, .event-tout-wrapper img:hover{
    transform: scale(0.95);
}
.section-container > h2 {
  font-size: 3em;
  /*  font-weight: 900;*/
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 30px;
  /*text-shadow: 2px 2px 0px #063458;*/
  /*display: none;*/
font-family: "ElanAT";
}
#gettheapp h2{
    font-size: 2em;
}
#videos .section-container h2, #gallery .section-container h2, #filmTV .section-container h2 {
  display: none;
}
.section-container p {
  color: #FFFFFF;
  /*text-align: justify;*/
}
#videos, #gallery {
  background: #000000;
}
.video-holder {
  position: relative;
  width: 100%;
  padding-bottom: 45%;
  background: #000;
  border: #cdcdcd solid 1px;
  overflow: hidden;
}
.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 {
  margin-top: 15px;
}
.video-thumb ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.video-thumb ul li {
  display: block;
  margin-right: 15px;
  position: relative;
  border: #fff solid 1px;
  cursor: pointer;
}
.video-thumb ul li:last-child {
  margin-right: 0;
}
.video-thumb a {
  cursor: pointer;
}
.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%;
}
#about {
  background: url("../images/gb.jpg") no-repeat left bottom, linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5));
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: overlay;
}
.cast_crew_wrapper {
  /*  width: 80%;*/
  color: #f1e6de;
  font-size: 18px;
}
.left-content, .right-content {
  float: left;
  width: 50%;
}
.left-content {
  color: #ff4254;
  /*  font-weight: 700;*/
}
.right-content {
  float: right;
  text-transform: none;
}
#gallery .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;
}
.img-holder {
  position: relative;
}
.download__content {
  position: absolute;
  bottom: 0;
  padding: 10px;
}
#filmTV {
  background: #111010;
}
.filmtv-content {
  display: flex;
  align-items: center;
  margin: 1em auto;
}
.filmtv-content div {
  flex-basis: 50%;
}
.film_description {
  color: #FFF;
  padding: 10px 2em;
}
.film_description h2 {
  font-family: "ElanAT";
}
.film_description h3 {
  font-size: 16px;
}
.film_description a, .recipes-container a {
  background: #9e0b0f;
  padding: 6px 10px;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 1em;
}
#event {
  background: rgba(0, 0, 0, 1.0);
}
#recipes{
    background: #111010
}
.recipes-content {
  display: flex;
}
.recipes-img {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5em;
}
.recipes-img img {
  margin-bottom: 2em;
}
.recipes-description a {
  background: #3e3939;
}
.recipes-video-holder, .filmTv-video-holder {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border: #cdcdcd solid 1px;
  overflow: hidden;
}
.recipes-video-holder video, .recipes-video-holder iframe, .filmTv-video-holder video, .filmTv-video-holder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.recipes-description {
  flex-basis: 50%;
  color: #FFFFFF;
}
.recipes-description h4 {
  margin-bottom: 20px;
}
.next-prev-container {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.next-prev-container a {
  background: #9e0b0f;
  padding: 6px 10px;
  border-radius: 4px;
  color: #FFFFFF !important;
  margin: 4% 15px 0;
  cursor: pointer;
  min-width: 150px;
  text-align: center;
}
#gettheapp .section-container {
  /*max-width: 90vw;
  padding-bottom: 0;*/
}
.gettheapp-content {
  display: flex;
  flex-direction: row;
  color: #FFFFFF;
}
.app-img-holder {
  flex-basis: 55%;
  display: flex;
}
.app-img {
  width: 33.33%;
}
.app-description {
  flex-basis: 45%;
  padding: 1em;
}
.app-btn-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
}
.qr-code-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.qr-code {
  max-width: 10em;
}
.qr-code-content small {
  text-align: center;
  padding-top: 5px;
}
.app-download-btn {
  display: flex;
  flex-direction: column;
  padding-left: 1em;
}
.app-download-btn a img {
  height: 50px;
  margin-bottom: 0.7em;
}
.app-download-desc {
  margin-top: 1.5em;
}
.event-container {
  width: 70%;
  color: #FFFFFF;
}
.event-content {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.event-content h3 {
  color: #FFFFFF;
  font-family: "ElanAT";
}
.event-city {
  font-size: 1.5em;
  color: #9e0b0f;
  margin-bottom: 0.5em;
  font-weight: 900;
}
.event-city::before, .event-city::after {
  content: "\2022";
  margin: 0 0.3em;
}
.event-list article:last-child {
  margin-bottom: 4em;
}
.event-list-item {
  background: rgba(0, 0, 0, 0.8);
  padding: 1em;
  border-radius: 0.9em;
  margin: 1em 0;
  border: #ababab solid 1px;
}
.event-desc {
  margin-bottom: 0.5em;
}
.event-desc a {
  font-size: 1.2em;
  color: #FFFFFF;
  transition: opacity 0.1s;
}
.event-desc a:hover {
  opacity: 0.5;
}
#virtualReality {
  background: #000000;
  background: linear-gradient(0deg, #141727, #0f111d);
}
.vr-container {
  padding: 4em 0 0;
}
.vr-content .vr-info {
  display: flex;
  border-bottom: dashed 1px #5a5a5a;
  padding-bottom: 4em;
  flex-direction: row;
}
.vr-info .vr-img-holder {
  border-right: dashed 1px #5a5a5a;
}
.vr-content .vr-info > div {
  padding: 0 2em;
  flex: 50%;
}
.vr-info h4 {
  color: #BFBFBF;
  font-size: 1em;
}
.vr-desc h3 {
  font-size: 3em;
  color: #FFFFFF;
  font-family: "ElanAT";
}
.vr-desc h3 span {
  color: #ee3524;
}
.vr-btn-heading {
  font-weight: 700;
}
.vr-desc a {
  background: #ee3524;
  padding: 6px 20px;
  color: #000000;
  border-radius: 30px;
  font-size: 1.2em;
  font-weight: 700;
}
.vr-desc .vr-platforms {
  margin: 2em 0;
}
.vr-desc .vr-platforms img {
  max-width: 10em;
  margin-right: 2em;
}
.vr-desc .vr-platforms img:last-child {
  margin-right: 0;
}
.vr-details {
  display: flex;
  justify-content: space-between;
  margin: 2em 0;
  padding-top: 2em;
  column-gap: 2em;
}
.vr-details-div img {
  max-height: 50px;
}
.vr-video-container {
  padding: 4em 0;
  border-bottom: dashed 1px #5a5a5a;
}
.vr-content .vr-follow{
  text-align: center;
  color:#ffffff;
  padding-top:2em;
}
.vr-follow h4 span{
  color:#ee3524;
}
.vr-video-container h2 {
  color: #ee3524;
  font-weight: 900;
}
.vr-video-content {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.vr-video-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vr-footer {
  display: flex;
  flex-direction: column;
}
.vr-footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
}
.vr-footer img {
  max-width: 18em;
}
.vr-footer p {
  padding: 2em 0 0;
  font-size: 0.7em;
  color: #938e8e;
  text-align: center;
}
@media screen and (max-width: 1366px) {
  .home-content > h1 {
    max-width: 65%;
  }
  .cta-btn {
    max-width: 150px;
    font-size: 14px;
    height: 2.2rem;
  }
  .section-container > h2 img {
    max-width: 60%;
  }
  .section-container p {
    font-size: 14px;
  }
  .film_description {
    padding: 10px 1em;
  }
  .film_description h2 {
    font-size: 1.3em;
  }
  .film_description h3 {
    font-size: 14px;
  }
  .filmTv-modal-container {
    max-width: 80%;
  }
  .filmTv-modal-container h5 {
    font-size: 1em;
  }
}
@media screen and (device-width: 1280px) and (device-height: 1024px) and (orientation: landscape), screen and (device-width: 1280px) and (device-height: 960px) and (orientation: landscape) {
  .section-container {
    max-width: 80vw;
  }
  .recipes-container a {
    font-size: 0.6em;
  }
}
@media screen and (max-width: 1024px), screen and (device-width: 1138px) and (device-height: 712px) and (orientation: landscape), screen and (device-width: 1334px) and (device-height: 800px) and (orientation: landscape) {
  html, body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
  }
  .nav-container::-webkit-scrollbar {
    width: 0 !important
  }
  .filmTv-gallery .gallery-img img {
    max-height: 40vh;
  }
  .filmTv-modal-container h5 {
    font-size: 0.8em;
  }
  .section-container {
    max-width: 80vw;
  }
  .slick-slider .slide-arrow {
    height: 20%;
  }
  .event-desc a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 850px) and (orientation:portrait) {
  .section-container h2 {
    font-size: 1.9em;
  }
.vr-content .vr-follow h2{
    font-size: 1em;
}
  .left-content {
    width: 60%;
    padding-right: 5px;
    text-align: left;
  }
  .right-content {
    width: 40%;
    text-align: left;
  }
  .nav-container {
    width: 100%;
    left: -100%;
  }
  .section-container > h2 img {
    max-width: 100%;
  }
  .filmTv-container div:nth-of-type(odd), .recipes-content, .gettheapp-content {
    flex-direction: column;
  }
  .filmTv-container div:nth-of-type(even) {
    flex-direction: column-reverse;
  }
  .film_description {
    text-align: left !important;
    padding: 2em 0;
  }
  .recipes-img {
    padding: 0;
  }
  .recipes-description {
    padding: 2em 0em;
  }
  .recipes-description p {
    margin-top: 2em;
  }
  .next-prev-container a {
    font-size: 0.8em;
    min-width: 130px;
  }
  .app-btn-content {
    justify-content: center;
    align-items: center;
  }
  .event-container {
    width: 100%;
  }
  
  .film-description-modal {
    padding: 2em 0 0;
  }
  .filmTv-video-container > div {
    flex-basis: 100%;
    padding: 1em 0;
  }
  .filmTv-video-container > div:nth-child(3) {
    margin: 0em auto;
  }
  .filmTv-modal-container h5 {
    font-size: 1em;
  }
  .filmTv-gallery .gallery-img img {
    max-height: 30vh;
  }
  #galleryDiv .prev-arrow {
    left: 0;
    z-index: 1;
  }
  #galleryDiv .next-arrow {
    right: 0;
  }
  #modalTrailer .video-player {
    width: 100%;
    margin: 0 auto;
    top: 50%;
  }
  #modalTrailer .modal-content {
    height: 50%;
  }
  .vr-content .vr-info, .vr-footer-logos, .vr-details {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .vr-content .vr-info > div {
    padding: 0;
    flex: 100%;
  }
  .vr-info .vr-img-holder {
    border-right: none;
    border-bottom: dashed 1px #5a5a5a;
  }
  .vr-desc h3 {
    font-size: 2em;
    padding-top: 2em;
  }
  .vr-desc .vr-platforms img {
    margin-right: 0;
    margin-bottom: 1em;
    display: block;
  }
  .vr-footer-logos {
    padding-top: 2em;
  }
  .vr-footer-logos img {
    max-width: 12em;
    margin-bottom: 2em;
  }
  .vr-footer-logos img:last-child {
    margin-bottom: 0;
  }
  .filmTv-modal-container {
    max-width: 100%;
  }
.vr-tout-wrapper, .event-tout-wrapper{
	max-width: 40%;
    position: relative;
    right: auto;
    left: auto;
    margin: 0 auto;
	  margin-bottom: 5%;
}
	.vr-tout-wrapper img:hover, .event-tout-wrapper img:hover{
    transform: scale(1);
}
}
@media screen and (max-width: 767px) {
  #closeCredits, #closeCreditsIntro {
    top: 5px;
    right: 5px;
  }
}
@media only screen and (max-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) {
  body {
    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: 450px) {
  .sonyheader img {
    height: 12px;
  }
  .home-content > h1 {
    max-width: 80%;
  }
  #containerShare a img {
    height: 20px;
  }
  .section-container {
    max-width: 100vw;
    padding: 13vh 15px 5vh;
  }
  #videos .section-container, #gallery .section-container {
    padding: 0 15px;
  }
  .video-thumb ul {
    display: inline-flex;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .video-thumb ul li {
    flex-basis: 40%;
    min-width: 40%;
  }
  .event-list {
    font-size: 0.9em;
  }
  #event .section-container {
    padding-bottom: 8vh;
  }
  .footer-links a {
    font-size: 8px;
    margin: 0 3px;
  }
  .copyright {
    line-height: 9px;
    font-size: 7px;
    margin-top: 2px;
  }
  .copyright br {
    display: block;
  }
  .bugs img {
    max-width: 80%;
  }
.vr-content .vr-follow h4{
  font-size: 1em;
}
}

.event-video{
  margin-bottom:1em;
  border: 1px solid #fff;
}
.event-video video{
  padding:0.5em;
  max-width:100%;
}