﻿@font-face{ 
    font-family: "MontserratBold"; 
    src: local('☺'), url('../media/fonts/montserrat-bold-webfont.woff') format('woff');
}

@font-face{ 
    font-family: "MontserratRegular";
    src: local('☺'), url('../media/fonts/montserrat-regular-webfont.woff') format('woff');
} 
@font-face{ 
    font-family: "MontserratLight";
    src: local('☺'), url('../media/fonts/montserrat-light-webfont.woff') format('woff');
}
/*



@font-face{ 
    font-family: "RanchoRegular";
    src: local('☺'), url('../media/fonts/Rancho-Regular.woff') format('woff');
}
*/


::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-button {
  width: 10px;
  height: 40px;
}
::-webkit-scrollbar-thumb {
  background: #ffffff; /**/
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}
::-webkit-scrollbar-track {
  background: rgba(1,0,0,0.5);
  border-radius: 7px;
}
::-webkit-scrollbar-corner {
  background: transparent;
}


html, body {
    margin:0;
    padding:0;
    width: 100%;
    height: 100%;
	background-color: #ffffff;
	-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;
    -ms-transform-origin: 0% 0%; /* IE 9 */
    -webkit-transform-origin: 0% 0%; /* Chrome, Safari, Opera */
    transform-origin: 0% 0%;
}


img, canvas {
    display: inline-block;
   	background: transparent;
	background-color: transparent;


}

div {
    display: inline-block;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.generic_absolute{
    pointer-events: none;
    position: absolute;
    display: inline-block;
}
.generic_relative{
    pointer-events: none;
    position: relative;
    display: inline-block;
}


/* wrapper */
#wrapper {
    position: absolute;
    display: inline-block;
    left: 0px;
    top: 0px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    background: none !important;
    -ms-transform-origin: 0% 0%; /* IE 9 */
    -webkit-transform-origin: 0% 0%; /* Chrome, Safari, Opera */
    transform-origin: 0% 0%;
}


/* divs */
#div_background {
    position: absolute;
    display: none;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #f4b601;
    background: #f4b601;
    background-image: url('../media/background.jpg');
    background-repeat:no-repeat;
    background-size: cover;
    background-position: center center;
}



#div_game {
    position: absolute;
    display: inline-block;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: none !important;
}


#div_ui {
    position: absolute;
    display: inline-block;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: none !important;
}



/* loader */


.loader_container{
    position: absolute;
    display: inline-block;
    left: 0px;
    top: 0px;
    width: 100%;
    background: none !important;
}

.loader_bar{
    position: absolute;
    display: inline-block;
    left: 0px;
    top: 100px;
    height: 6px;
    background-color: #00c5f1;
}

.loader_txt{
    position: absolute;
    display: inline-block;
    color: #00c5f1;
    font-family: 'MontserratBold', sans-serif;
    font-size: 32pt;
    margin-top: 10px;
}


/* mute */

.b_mute{
    position: absolute;
    display: inline-block;
    top: 0px;
    right: 10px;
    width: 50px;
    height: 50px;
    pointer-events:auto;
    background: url('../media/b_mute_off.svg');
}
.b_mute:hover{
    cursor:pointer;
}

.b_mute_on{
    position: absolute;
    display: inline-block;
    top: 0px;
    right: 10px;
    width: 50px;
    height: 50px;
    pointer-events:auto;
    background: url('../media/b_mute_on.svg');
}
.b_mute_on:hover{
    cursor:pointer;
}

/* logo */

.logo_block{
    position: absolute;
    display: inline-block;
    pointer-events: none;
    color: #ffffff;
    text-align: center;
    width: 220px;
    top: 10px;
    left: 10px;
}

.logo_date_1{
    display: inline-block;
    color: #ffffff;
    font-family: 'MontserratLight';
    font-size: 16px;
    margin-right: 5px;
}

.logo_date_2{
    display: inline-block;
    color: #ffffff;
    font-family: 'MontserratBold';
    font-size: 16px;
    margin-right: 18px;
}


/*==========================*/
/* legal */
/*==========================*/

.legal_block {
    position: absolute;
    display: inline-block;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height:auto;
    pointer-events:auto;
    font-family: Arial;
    font-size: 8pt;
    color: #ffffff;
    text-align:center;
    background-color: rgba(57, 185, 239, 1);
}


.legal_block a:link {
    text-decoration: none;
    color: #ffffff;
}

.legal_block a:visited {
    text-decoration: none;
    color: #ffffff;
}

.legal_block a:active {
    text-decoration: underline;
    color: #ffffff;
}

.b_legal {
    position: relative;
    display: inline-block;
    top:0px;
    padding: 10px;
    pointer-events:auto;
    cursor:pointer;
    text-align: center;
    text-decoration: none !important;
    white-space: nowrap;
    color: #ffffff;
    margin-right: 20px;
    font-family: 'MontserratBold';
    font-size: 14px;
    text-decoration: none;
}

.b_legal a:link {
    text-decoration: none;
    color: #ffffff;
}

.b_legal a:visited {
    text-decoration: none;
    color: #ffffff;
}

.b_legal a:active {
    text-decoration: none;
    color: #ffffff;
}



/*==========================*/
/* bumper */
/*==========================*/

.popup_panel{
    position: absolute;
    display: inline-block;
    top: -1px;
    left: -1px;
    width: 101%;
    height: 101%;
    background: #ffffff;
    text-align: center;
}

.bumper{
    position: relative;
    display: inline-block;
    color: #00b6f1;
    padding: 0px 292px 0px 10px;
    font-family: 'MontserratBold';
    text-align: center;
}

.bumper_hdr{
    position: relative;
    display: inline-block;
    font-family: 'MontserratBold';
    font-size: 45px;
}

.bumper_msg{
    position: relative;
    display: inline-block;
    font-family: 'MontserratRegular';
    font-size: 20px;
}

.bumper_continue{
    position: relative;
    display: inline-block;
    color: #ffffff;
    padding: 0px 20px 0px 20px;
    font-family: 'MontserratBold';
    font-size: 24px;
    line-height: 36px;
    background-color: #00b6f1;
    border: none;
    border-radius: 12px;
    text-align: center;
    margin: 10px;
}

.bumper_continue:hover{
    cursor:pointer;
}

.bumper_goback{
    position: relative;
    display: inline-block;
    color: #ffffff;
    padding: 0px 20px 0px 20px;
    font-family: 'MontserratBold';
    font-size: 24px;
    line-height: 36px;
    background-color: #c7c7c7;
    border: none;
    border-radius: 12px;
    text-align: center;
    margin: 10px;
}

.bumper_goback:hover{
    cursor:pointer;
}








/* logo */

.game_logo{
    position: absolute;
    display: inline-block;
    pointer-events: none;
    color: #ffffff;
    text-align: center;
    width: 630px;
    height: 150px;
    font-family: 'MontserratBold';
    font-size: 46px;
    line-height: 60px;
    background: url('../media/game_logo.svg');
}


.briefcase_block{
    position: absolute;
    display: inline-block;
    color: #ffffff;
    text-align: center;
    font-family: 'MontserratBold';
    font-size: 50px;
    width: 620px;
    height: 620px;
    -ms-transform-origin: 50% 100%; /* IE 9 */
    -webkit-transform-origin: 50% 100%; /* Chrome, Safari, Opera */
    transform-origin: 50% 100%;
}

.briefcase_block:hover{
    cursor: pointer;
}




/* puzzle */

.puzzle_container{
    position: absolute;
    display: inline-block;
    width: 620px;
    height: 620px;
    background-color: #00b7f0;
    background: #00b7f0;
    background-image: url('../media/puzzle_bg.png');
    background-repeat:no-repeat;
    background-size: cover;
    -webkit-box-sizing: content-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: content-box;    /* Firefox, other Gecko */
    box-sizing: content-box;         /* Opera/IE 8+ */
    border: 4px solid white;
}

.puzzle_piece{
    position: absolute;
    display: inline-block;
    left: 0px;
    top: 0px;
    background-repeat: no-repeat;
}

.puzzle_thumb{
    position: relative;
    display: inline-block;
    width: 230px;
    height: 230px;
    margin: 22px;
    margin-bottom: -100px;
    background-repeat:no-repeat;
    background-size: cover;
    border: 2px solid white;
    background-color: #ffffff;
    -ms-transform-origin: 50% 50%; /* IE 9 */
    -webkit-transform-origin: 50% 50%; /* Chrome, Safari, Opera */
    transform-origin: 50% 50%;
    pointer-events: auto;
    -webkit-box-sizing: content-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: content-box;    /* Firefox, other Gecko */
    box-sizing: content-box;         /* Opera/IE 8+ */
}

.puzzle_thumb:hover{
    cursor:pointer;
    border: 4px solid white;
    margin: 20px;
    margin-bottom: -102px;
}


.choose_txt{
    position: absolute;
    display: inline-block;
    pointer-events: none;
    color: #ffffff;
    text-align: center;
    width: 620px;
    font-family: 'MontserratBold';
    font-size: 34px;
    bottom: 115px;
    left:0px;
}


.puzzle_glow{
    position: absolute;
    display: inline-block;
    pointer-events: none;
    color: #ffffff;
    text-align: center;
    font-family: 'MontserratBold';
    font-size: 22px;
}

.puzzle_glow_txt{
    position: relative;
    top: 50%;
    transform: translateY(-50%); 
}

.timer_block{
    position: absolute;
    display: inline-block;
    text-align: left;
    pointer-events: none;
}

.timer_label{
    position: relative;
    display: inline-block;
    color: #ffffff;
    margin-right: 20px;
    font-family: 'MontserratBold';
    font-size: 30px;
}

.timer_time{
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-family: 'MontserratLight';
    font-size: 30px;
}

.progress_stamp{
    pointer-events: none;
    position: absolute;
    display: inline-block;
    -ms-transform-origin: 50% 50%; /* IE 9 */
    -webkit-transform-origin: 50% 50%; /* Chrome, Safari, Opera */
    transform-origin: 50% 50%;
   }


 .video_button{
    position: absolute;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../media/b_video_play.svg');
   }

.video_button:hover{
    cursor:pointer;
}


.speech_bubble{
    position: absolute;
    display: inline-block;
    color: #000000;
    padding: 20px;
    font-family: 'MontserratRegular';
    font-size: 24px;
    background-color: #ffffff;
    border: none;
    border-radius: 25px;
    text-align: center;
    pointer-events: none;
}

.speech_bubble_hdr{
    color: #00c5f1;
    font-family: 'MontserratBold';
    font-size: 32px;
}


#div_video{
    position: absolute;
    display: inline-block;
    top: 0px;
    left:0px;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.5);
}

.video{
    position: absolute;
    display: inline-block;
    top: 0px;
    left:0px;
    width: 100%;
    border : 0px;
    margin: 0px;
}

.b_video_close{
    position: absolute;
    display: inline-block;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    pointer-events:auto;
    background: url('../media/b_video_close.svg');
}
.b_video_close:hover{
    cursor:pointer;
}