@font-face{ 
    font-family: "Montserrat"; 
    src: local('☺'), url('../media/fonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
}
@font-face{ 
    font-family: "Montserrat"; 
    src: local('☺'), url('../media/fonts/Montserrat-Regular.woff') format('woff');
}

@font-face{ 
    font-family: "Passion One"; 
    src: local('☺'), url('../media/fonts/PassionOne-Bold.woff') format('woff');
    font-weight: bold;
}
@font-face{ 
    font-family: "Passion One"; 
    src: local('☺'), url('../media/fonts/PassionOne-Regular.woff') format('woff');
}



/* -------------------------- */
/* general                    */
/* -------------------------- */


/* This used to work for the parent element of button divs */
/* But it does not work with newer browsers, the below doesn't hide the play button parent div */

*::-webkit-media-controls-panel {
  display: none!important;
  -webkit-appearance: none;
}

/* Old shadow dom for play button */

*::-webkit-media-controls-play-button {
  display: none!important;
  -webkit-appearance: none;
}

/* New shadow dom for play button */

/* This one works! */

*::-webkit-media-controls-start-playback-button {
  display: none!important;
  -webkit-appearance: none;
}
* {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}


::-webkit-scrollbar {
  width: 8px;
  height: 8px;
 
}
::-webkit-scrollbar-button {
  width: 0px;
  height: 2px;
}
::-webkit-scrollbar-thumb {
  background: #ffffff; /**/
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}
::-webkit-scrollbar-track {
  background-color: black;
  border-radius: 4px;
}
::-webkit-scrollbar-corner {
  background: transparent;
}

input[type=text]::-ms-clear {
    display: none;
}

select {
    /*height: 34px;*/
    position: relative;
    display: inline-block;
    font-family: Arial;
    padding: 8px;
    /*font-size: 18px;*/
    background-color: #ffffff;
    color: #333333;

    border: 0 !important;  /*Removes border*/
    border-width: 0px;
    border-radius: 8px;
    border-style: none;
    padding-left: 10px;
    padding-right: 45px;
    
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    background-image: url('../media/images/pulldown_arrow.svg');

    margin-right:10px;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    outline:none;
    cursor: pointer;

    pointer-events: auto;
}

select::-ms-expand {
    display: none;
}

a, a:visited, a:hover, a:active, a:focus {
    color: inherit;
    outline: 0;
}


/* -------------------------- */
/* general                    */
/* -------------------------- */
.background_video{
  position: absolute;
  display: block;
  background-color: black;

}
.background_image{
  position: absolute;
  display: block;
}

html, body {
  pointer-events: none;
  margin:0;
  padding:0;
  background-color: #000000;
  -ms-user-select: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none; 
  -webkit-user-callout: none;
  -ms-touch-action: manipulation !important;
  overflow: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: none;
}

body:after{
 display:none;
 content: url(../media/images/nav_over.svg) url(../media/images/nav_norm.svg);
}

#wrapper {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top:0px;
  left: 0px;
  overflow: hidden;
  pointer-events: none;
}

#scroller{
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top:0px;
  left: 0px;
  text-align: center;
  font-size:  0px; 
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: auto;
}


/* -------------------------- */
/* main                       */
/* -------------------------- */

#debug{
    position: absolute;
    top: 0px; 
    left: 0px;
    background-color: #ffffff;
    font-size: 10px;
    font-family: Arial;
    color: #333333;
}

.section_div{
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

}

.section_canvas{
  position: absolute;
  display: block;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
}


.story_block{
  position: absolute;
  display: block;
  font-size: 20px;
  color: white;
  text-align: left;
  font-family: "Montserrat";
  pointer-events: auto;
  overflow-y: auto;
  background-color: rgba(18, 7, 49, 0.6);
  -webkit-text-size-adjust: 100%;
}

.story_text{
  padding: 10px;
  padding-right: 20px;

}

.preorder_block{
  position: absolute;
  display: block;
  font-size: 20px;
  color: white;
  text-align: left;
  font-family: "Montserrat";
  pointer-events: auto;
  overflow-y: auto;
  /* background-color: rgba(18, 7, 49, 0.6); */
  -webkit-text-size-adjust: 100%;
}

.preorder_text{
  padding: 10px;
  padding-right: 20px;

}


.video_block{
  position: absolute;
  display: block;
  background-color: black;
}


/* -------------------------- */

#div_arrow {
  position: absolute;
  display: block;
  bottom:0px;
  left:10px;
  width:128px;
  height:32px;
  background:url(../media/images/scroll_arrow.svg) center center no-repeat; 
  -ms-transform-origin: 0% 100%; /* IE 9 */
  -webkit-transform-origin: 0% 100%; /* Chrome, Safari, Opera */
  transform-origin: 0% 100%;  
}


#div_errors{
    position: absolute;
    display: none;
    left: 0px;
    top: 0px;
    font-family: Arial, Helvetica;
    width: 100%;
    height: 100%;
    opacity: 1;
    font-size: 14px;
    color: #ffffff;
    background-color: #333333;
}





/* -------------------------- */
/* nav                      */
/* -------------------------- */

#div_nav{
  position: absolute;
  display: block;
  top:0px;
  left:0px;
  width: 250px;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  -ms-transform-origin: 0% 0%; /* IE 9 */
  -webkit-transform-origin: 0% 0%; /* Chrome, Safari, Opera */
  transform-origin: 0% 0%;
  pointer-events: none;
}


.nav_logo{
  position: relative;
  display: inline-block;
  width: 220px;
  height: auto;
  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  pointer-events: none;
}

.nav_opener{
  position: relative;
  display: inline-block;
  width: 250px;
  height: 52px;
  margin-left: -5px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-shadow: 2px 3px 2px rgba(0,0,0,.3);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('../media/images/menu_norm.svg');
  transform: rotate(-3.5deg);
  pointer-events: auto;
}
.nav_opener:hover{
  background-image: url('../media/images/menu_norm.svg');
  cursor: pointer;
}


.menu_date_1{
  position: absolute;
  display: block;
  top: 2px;
  left:5px;
  width:200px;
  height: 20px;
  color: #191a24;
  line-height: 20px;
  font-size: 14px;
  font-family: "Montserrat";
  text-align: center;
}

.menu_date_2{
  position: absolute;
  display: block;
  top: 15px;
  left:5px;
  width:200px;
  height: 35px;
  color: #191a24;
  line-height: 35px;
  font-size: 32px;
  font-family: "Passion One";
  text-align: center;
  }




.nav_holder{
  position: relative;
  display: inline-block;
}

.nav_current{
 position: absolute;
  display: block;
  width: 213px;
  height:40px;
  margin-left: -5px;
  margin-bottom: 8px;
  color: #191a24;
  line-height: 40px;
  font-size: 30px;
  font-family: "Passion One";
  text-align: center;
  box-shadow: 2px 3px 2px rgba(0,0,0,.3);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('../media/images/nav_current.svg');
  -webkit-text-size-adjust: 100%;
  pointer-events: none;
}


.nav_button_current{
  position: relative;
  display: inline-block;
  width: 213px;
  height:40px;
  margin-left: -5px;
  margin-bottom: 1px;
  color: #191a24;
  line-height: 40px;
  font-size: 30px;
  font-family: "Passion One";
  text-align: center;
  box-shadow: 2px 3px 2px rgba(0,0,0,.3);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('../media/images/nav_current.svg');
  -webkit-text-size-adjust: 100%;
}


.nav_button{
  position: relative;
  display: inline-block;
  width: 213px;
  height:40px;
  margin-left: -5px;
  margin-bottom: 1px;
  color: #191a24;
  line-height: 40px;
  font-size: 30px;
  font-family: "Passion One";
  text-align: center;
  box-shadow: 2px 3px 2px rgba(0,0,0,.3);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('../media/images/nav_norm.svg');
  -webkit-text-size-adjust: 100%;
}

.nav_button:hover{
  color: #ffffff;
  background-image: url('../media/images/nav_over.svg');
  cursor: pointer;
}




/* -------------------------- */
/* loading                     */
/* -------------------------- */


#div_loading{
  position: absolute;
  display: block;
  z-index: 110;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: auto;
  background-color: white;
 }


.loading_block{
  position: absolute;
  display: block;
  text-align: center;
  pointer-events: none;
 }

 .loading_logo{
    position: relative;
    display: inline-block;
 }

 .loading_date{
    position: relative;
    display: inline-block;
    pointer-events: none;
    color: black;
    font-size: 32px;
    text-align: center;
    font-family: "Passion One";
 }

 .loading_bar{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 24px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
 }
.loading_bar_fill{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #f9c500;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
 }

.loading_bar_frame{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid white;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
 }


/* -------------------------- */
/* posters                     */
/* -------------------------- */



#div_popups {
    position: absolute;
    display: none;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.6);
    pointer-events: auto;
}

.poster_large{
    position: absolute;
    display: block;
    border: 6px solid #ffffff;
    background-repeat: no-repeat;
    background-color: #000000;
    background-position: center;
    background-image: url('../media/images/spinner.gif');
    box-sizing: border-box;
}

.poster_image{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
}

.poster_play{
  position: absolute;
  display: block;
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -100px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../media/images/video_play.svg');
}

.poster_play:hover{
  cursor: pointer;
  background-image: url('../media/images/video_play_over.svg');
}


.poster_restart{
  position: absolute;
  display: block;
  width: 100px;
  height: 100px;
  top: 50%;
  right: 50%;
  margin-top: -50px;
  margin-right: -100px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../media/images/video_restart.svg');
}

.poster_restart:hover{
  cursor: pointer;
  background-image: url('../media/images/video_restart_over.svg');
}




.poster_close{
    position: absolute;
    display: block;
    color:#000000;
    width: 40px;
    height: 40px;
    padding: 0px;
    top:-3px;
    right:-3px;
    font-family: 'Montserrat';
    font-weight: bold;
    font-size: 24px;
    pointer-events: auto;
    text-align: center;
    line-height: 40px;
    background-color: #ffffff;
}

.poster_close:hover{
    color: #246ef3;
    cursor: pointer;
}


.image_caption{
  position: absolute;
  display: block;
  bottom:0px;
  left:0px;
  width: calc(100% - 12px);
  padding: 6px;
  background-color: rgba(0,0,0,0.8);
  color: white;
  font-family: 'Montserrat';
  font-size: 18px;
  pointer-events: auto;
  text-align: center;
}
.image_caption a:link, .image_caption a:visited {
  text-decoration: none;
  color:#00aeff;
}


.character_popup{
    position: absolute;
    display: block;
    background-repeat: no-repeat;
    background-color: #000000;
    background-position: center;
    background-image: url('../media/images/spinner.gif');
    box-sizing: border-box;
}

.character_image{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
  }
.character_video{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
  }


.character_caption{
  position: absolute;
  display: block;
  bottom:0px;
  left:0px;
  width: 100%;
  padding: 6px;
  background-color: rgba(0,0,0,0.5);
  pointer-events: auto;
  text-align: center;
    box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

.character_name{
    position: relative;
    display: block;
    pointer-events: none;
    color: white;
    font-size: 42px;
    text-align: center;
    white-space: nowrap;
    font-family: "Passion One";
  -webkit-text-size-adjust: 100%;
}

.character_actor{
    position: relative;
    display: block;
    pointer-events: none;
    color: #ffe400;
    font-size: 42px;
    text-align: center;
    white-space: nowrap;
    font-family: "Passion One";
}

.character_desc{
  position: relative;
  display: block;
  pointer-events: none;
  color: white;
  font-family: 'Montserrat';
  font-size: 18px;
  padding: 6px;
}



.b_close{
  position: absolute;
  display: block;
  width: 38px;
  height: 38px;
  top: 2px;
  right: 2px;
  background-repeat: no-repeat;
  background-position: center;
   background-size: contain;
  background-image: url('../media/images/close_norm.svg');
  pointer-events: auto;
  -ms-transform-origin: 100% 0%; /* IE 9 */
  -webkit-transform-origin: 100% 0%; /* Chrome, Safari, Opera */
  transform-origin: 100% 0%;
}
.b_close:hover{
  background-image: url('../media/images/close_norm.svg');
  cursor: pointer;
}


/* -------------------------- */
/* legal                      */
/* -------------------------- */

#div_copyright{
  text-decoration: none !important;
  position: absolute;
  display: block;
  right: 8px;
  padding-right: 16px;
  top: 0px;
  font-size: 12px;
  text-align: right;
  font-family: "Montserrat";
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 0 3px #000000;
  -webkit-text-size-adjust: 100%;
  -ms-transform-origin: 100% 0%; /* IE 9 */
  -webkit-transform-origin: 100% 0%; /* Chrome, Safari, Opera */
  transform-origin: 100% 0%;
  white-space: nowrap;
  
  pointer-events: auto;
}

.copyright_link{
  text-decoration: none !important;
  pointer-events: auto;
  white-space: nowrap;
  cursor: pointer;
}
.copyright_link:hover{
  color: white;
}

.copyright_link_mobile{
  text-decoration: none !important;
  pointer-events: auto;
  white-space: nowrap;
  cursor: pointer;

}


#div_legal{
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 100;
  overflow: visible;
  background-color: #0b111d;
  touch-action: none;
  text-align: center;
  -webkit-overflow-scrolling: none;
  -webkit-text-size-adjust: 100%;
  -ms-transform-origin: 0% 0%; /* IE 9 */
  -webkit-transform-origin: 0% 0%; /* Chrome, Safari, Opera */
  transform-origin: 0% 0%;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
}


.legal_block {
  position: absolute;
  display: inline-block;
  top: 0px;
  left:0px;
  padding: 8px;
  font-size: 14px;
  font-family: "Montserrat";
  color: #ffffff;
  text-align:center;
  pointer-events: none;
  background-color: #000000;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
}

/*legal links*/
.legal_text {
  position: relative;
  display: inline-block;
    pointer-events: none;
    white-space: nowrap;
    color: #ffffff;
    margin-right: 4px;
    margin-left: 4px;
    font-family: "Montserrat";
}



.legal_link {
    text-decoration: none;
    pointer-events: auto;
    white-space: nowrap;
    color: #ffffff;
    font-family: "Montserrat";
}

.legal_link:hover {
    color: #faaf1e;
}
.legal_link:active {
    color: #faaf1e;
}

/*legal links for mobile*/
.legal_link_mobile {
    text-decoration: none;
    pointer-events: auto;
    white-space: nowrap;
    color: #ffffff;
    font-family: "Montserrat";
}

.b_legal {
    position: absolute;
    display: block;
    top: -48px;
    left: 0px;
    height: 50px;
    padding-right: 30px;
    padding-left: 120px;
    font-family: "Montserrat";
    text-align: center;
    line-height: 50px;
    text-decoration: none !important;
    white-space: nowrap;
    color: #ffffff;
    border-radius: 0px 30px 0px 0px;
    pointer-events: auto;
    cursor: pointer;
    background-color: #000000;
    background-repeat: no-repeat;
    background-position: 4px center;
    background-size: auto 40px;
    background-image: url('../media/images/rating_NR.png');


}
.b_legal:active {
    color: #faaf1e;
}
.b_legal:hover {
    color: #faaf1e;
}

.b_legal_mobile {
  position: absolute;
  display: block;
  top: -48px;
  left: 0px;
  height: 50px;
  padding-right: 30px;
  padding-left: 120px;
  font-family: "Montserrat";
  text-align: center;
  line-height: 50px;
  text-decoration: none !important;
  white-space: nowrap;
  color: #ffffff;
  border-radius: 0px 30px 0px 0px;
  pointer-events: auto;
  cursor: pointer;
  background-color: #000000;
  background-repeat: no-repeat;
  background-position: 4px center;
  background-size: auto 40px;
  background-image: url('../media/images/rating_NR.png');
}


.legal_image{
    position: relative;
    display: inline-block;
    margin: 5px;
    pointer-events: none;
    max-width: calc(100% - 20px);
}


.billing_block{
  position: relative;
  display: inline-block;
  margin-top: 5px;
  pointer-events: none;
  background-color: #000000;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url('../media/images/billingblock_640.png');
}


/* -------------------------- */
/* partners                   */
/* -------------------------- */


.partner_large{
    position: absolute;
    display: block;
    border: 4px solid #ffffff;
    background-color: #000000;
 
}

.partner_title{
  font-family: 'Montserrat';
  font-weight: bold;
  font-size: 16px;
}

.partner_image_holder{
    position: absolute;
    display: block;
    top:0px;
    left:0px;
    width: 100%;
    background-color: white;
    text-align: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.partner_caption{
  position: absolute;
  display: block;
  top:0px;
  left:0px;
  width: 100%;
  color: white;
  font-family: 'Montserrat';
  font-size: 14px;
  pointer-events: auto;
  text-align: left;
  padding: 20px;
  overflow-y: auto;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */

}
.partner_caption a:link, .partner_caption a:visited {
  text-decoration: none;
  color:#00aeff;
}

.popup_exit{
  position: absolute;
  display: block;
  top:0px;
  left:0px;
  width: 100%;
  color: white;
  background-color: #000000;
  font-family: 'Montserrat';
  font-weight: bold;
  font-size: 14px;
  pointer-events: auto;
  text-align: center;
  padding: 20px;
  overflow-y: auto;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
}

.exit_hdr{
  position: relative;
  display: inline-block;
  font-family: "Passion One";
  font-size: 30px;
  margin-bottom: 20px;
}

.exit_msg{
  position: relative;
  display: inline-block;
 max-width: 640px;
}


.green_button{
  text-decoration: none !important;
  position: relative;
  display: inline-block;
  color: black !important;
  margin-top: 10px;
  margin-bottom: 10px;
  white-space: nowrap;
  text-align: center;
  font-family: 'Passion One';
  font-size: 30px;
  padding: 6px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #7EBD2E;
  cursor: pointer;
}
.green_button a:visited, green_button a:link {
  text-decoration: none !important;
  color: #ffffff;
}

.green_button:hover{
  text-decoration: none !important;
   cursor: pointer;
}
.orange_button{
  text-decoration: none !important;
  position: relative;
  display: inline-block;
  color: black !important;
  margin-top: 10px;
  margin-bottom: 10px;
  white-space: nowrap;
  text-align: center;
  font-family: 'Passion One';
  font-size: 30px;
  padding: 6px;
  padding-left: 20px;
  padding-right: 20px;
 
  background-color: #FFD716;
  cursor: pointer;
}
.orange_button a:visited, orange_button a:link {
  text-decoration: none !important;
  color: #ffffff;
}

.orange_button:hover{
  text-decoration: none !important;
   cursor: pointer;
}


.social_button_facebook{
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  margin:4px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../media/images/icon_facebook.png');
}

.social_button_facebook: hover{
  cursor: pointer;
  border: 2px solid white;
}

.social_button_twitter{
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  margin:4px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../media/images/icon_twitter.png');
}

.social_button_twitter: hover{
  cursor: pointer;
}

.social_button_youtube{
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  margin:4px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../media/images/icon_youtube.png');
}

.social_button_youtube: hover{
  cursor: pointer;
  margin:6px;
}


/* -------------------------- */
/* film browser               */
/* -------------------------- */

.film_browser{
  position: absolute;
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */


}

.film_thumb{
  position: relative;
  display: inline-block;
  height: calc(100% - 8px);
  width: auto;
  margin-top: 4px;
  margin-right: 5px;
  margin-left: 5px;
  border: 2px solid black;
  pointer-events: auto;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
}

.film_thumb:hover{
  cursor: pointer;
  border: 2px solid white;
}

.film_thumb_selected{
  position: relative;
  display: inline-block;
  height: calc(100% - 8px);
  width: auto;
  margin-top: 4px;
  margin-right: 5px;
  margin-left: 5px;
  border: 2px solid white;
  cursor: pointer;
  pointer-events: auto;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
}


/* -------------------------- */
/* music                      */
/* -------------------------- */

#div_radio{
  position: absolute;
  display: block;
  top:0px;
  right: 0px;
  width: 228px;
  height: 228px;
  background-repeat: no-repeat;
  background-position: top right;
  background-image: url('../media/images/DJ_fullsize.gif');
  border-bottom-left-radius: 180px;
  cursor: pointer;
  pointer-events: auto;
  -ms-transform-origin: 100% 0%; /* IE 9 */
  -webkit-transform-origin: 100% 0%; /* Chrome, Safari, Opera */
  transform-origin: 100% 0%;
}


.radio_frame{
  position: absolute;
  display: block;
  top:0px;
  right: 0px;
  width: 228px;
  height: 228px;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('../media/images/music_frame.png');
}

.radio_speaker{
  position: absolute;
  display: block;
  top:10px;
  left: 50px;
  width: 60px;
  height: 50px;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('../media/images/speaker_on.svg');
}


.film_logo_date{
 font-size: 16px;
  color: white;
  font-family: "Arial";
  }

  .film_logo_msg{
 font-size: 16px;
  color: white;
  font-family: "Arial";
  }
  
#btnOverlay{
	position:fixed;
	top:0;
	left:0;
	right:0;
	width:100%;
	height:100%;
	z-index:999999;
	background:rgba(0,0,0,0.95);
	color:#FFFFFF;
	text-align:center;
	overflow-y: scroll;
	pointer-events: auto;
}
#btnOverlay .tt-overlay{
	margin:2% auto;
	display:block;
	width:15%;
	max-width:100%;
}
#btnOverlay .btnOverlay-close{
	/*position:fixed;
	right:20px;
	top:20px;
	width: 65px;
    height: 65px;
    border: 0 solid #fff;
    padding: 30px 20px;
    border-radius: 100%;
    left: auto;
    overflow: hidden;*/
	    position: absolute;
    display: block;
    color: #000000;
    width: 40px;
    height: 40px;
    padding: 0px;
    top: 20px;
    right: 20px;
    font-family: 'Montserrat';
    font-weight: bold;
    font-size: 24px;
    pointer-events: auto;
    text-align: center;
    line-height: 40px;
    background-color: #ffffff;
}
#btnOverlay .btnOverlay-close:before{
	content: "";
    display: block;
    width: 100%;
    height: 100%;
    /*background-image: url(../assets/images/nav/nav-ring.svg);*/
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateZ(-3px) scale(1.05);
}
#btnOverlay .btnOverlay-close .bar{
	width: 100%;
    height: 5px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(0,0,0,.25);
    transform: rotate(45deg);
}
#btnOverlay .btnOverlay-close .bar:first-child{
	transform: rotate(-45deg);
	margin-bottom: -5px;
}
#btnOverlay .digital-box{
	margin-bottom:5%;
}
#btnOverlay .btn-box h2{
	font-family: "Montserrat";
}
#btnOverlay .btn-box ul{
	list-style-type:none;
	margin:0;
	padding:0;
}
#btnOverlay .btn-box ul li{
	display:inline-block;
	margin:0 10px 20px;
}
#btnOverlay .btn-box ul li a{
	display:block;
	transition: transform .5s cubic-bezier(.19,1,.22,1) 0s;
}
#btnOverlay .btn-box ul li a:hover{
	-ms-transform: scale(1);
    transform: scale(1);
}

@media (max-width:768px){
    
	#btnOverlay .tt-overlay{
		width:30%;
	}
}