@font-face {
    font-family: "MontserratBold";
    src: local('☺'), url('../media/fonts/MontserratBold.woff') format('woff');
    font-style: normal;
}
@font-face {
    font-family: "MontserratRegular";
    src: local('☺'), url('../media/fonts/MontserratRegular.woff') format('woff');
    font-style: normal;
}
@font-face {
    font-family: "Dimbo-Regular";
    src: local('☺'), url('../media/fonts/DimboRegular.woff') format('woff');
    font-style: normal;
}
@font-face {
    font-family: "Dimbo-Italic";
    src: local('☺'), url('../media/fonts/DimboItalic.woff') format('woff');
    font-style: normal;
}
@font-face{ 
    font-family: "MouseMemoirs"; 
    src: local('☺'), url('../media/fonts/MouseMemoirs-Regular.woff') format('woff');
    font-style:normal;
}
@font-face{ 
    font-family: "ArialUnicode"; 
    src: local('☺'), url('../media/fonts/ARIALUNI.TTF') format('TTF');
    font-style:normal;
}
html, body {
    position: absolute;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    background-color: #0b111d;
    overflow: hidden;
    -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;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-image: url('../media/bg_title.jpg');
}
.loader_dummy {
    position: absolute;
    display: block;
    width: 0px;
    height: 0px;
    top: 0px;
    left: 0px;
    overflow: hidden;
    visibility: hidden;
}
a, a:visited, a:hover, a:active, a:focus {
    color: inherit;
    outline: 0;
}
img {
    display: inline-block;
    background: transparent;
    backface-visibility: hidden;
}
canvas {
    backface-visibility: hidden;
}
div {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    backface-visibility: hidden;
}
.clear {
    clear: both;
}
.generic_absolute {
    position: absolute;
    display: block;
}
.generic_relative {
    position: relative;
    display: inline-block;
}
.generic_block {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
/*==========================*/
/* wrapper */
/*==========================*/


#debug {
    position: absolute;
    display: inline-block;
    left: 0px;
    top: 0px;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(255,0,0,0.5);
    color: #ffffff;
    pointer-events: none;
    font-size: 10px;
    font-family: "Arial";
    z-index: 1000;
}
#div_errors{
    position: absolute;
    display: none;
    left: 0px;
    top: 0px;
     z-index: 1002;
    font-family: Arial, Helvetica;
    width: 100%;
    height: 100%;
    opacity: 1;
    font-size: 14pt;
    color: #ffffff;
	
    background-color: #333333;
}
#div_loading {
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 100;
    background-color: #0b111d;
    -ms-transform-origin: 0% 0%; /* IE 9 */
    -webkit-transform-origin: 0% 0%; /* Chrome, Safari, Opera */
    transform-origin: 0% 0%;
}
#div_pause {
    position: absolute;
    display: none;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 100;
    text-align: center;
    background-color: rgba(0,38,65,.66);
    -ms-transform-origin: 0% 0%; /* IE 9 */
    -webkit-transform-origin: 0% 0%; /* Chrome, Safari, Opera */
    transform-origin: 0% 0%;
}
#div_screens {
    position: absolute;
    display: block;
    top: 0px;
    left: 0px;
    overflow: hidden;
    text-align: center;
    -ms-transform-origin: 0% 0%; /* IE 9 */
    -webkit-transform-origin: 0% 0%; /* Chrome, Safari, Opera */
    transform-origin: 0% 0%;
    pointer-events: auto;
}
#canvas_game {
    position: absolute;
    display: none;
    left: 0px;
    top: 0px;
} /*
#div_legal {
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 100;
    overflow: visible;
    background-color: #0b111d;
    touch-action: none;
    font-size: 20px;
    -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%;
} */
#div_controls {
    position: absolute;
    display: block;
    top: 0px;
    right: 0px;
    width: 74px;
    padding-top: 5px;
    padding-right: 10px;
    -ms-transform-origin: 100% 0%; /* IE 9 */
    -webkit-transform-origin: 100% 0%; /* Chrome, Safari, Opera */
    transform-origin: 100% 0%;
    pointer-events: none;
}

/*==========================*/
/* mute/fullscreen/pause    */
/*==========================*/ 

.b_fullscreen {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 64px;
    margin-top: 5px;
    pointer-events: auto;
    background-repeat: no-repeat;
    background-size: 64px 64px;
    background-image: url('../media/b_fullscreen_on.svg');
}
.b_fullscreen:hover {
    cursor: pointer;
    background-image: url('../media/b_fullscreen_on_over.svg');
}
.b_fullscreen_on {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 64px;
    margin-top: 5px;
    pointer-events: auto;
    background-repeat: no-repeat;
    background-size: 64px 64px;
    background-image: url('../media/b_fullscreen_off.svg');
}
.b_fullscreen_on:hover {
    cursor: pointer;
    background-image: url('../media/b_fullscreen_off_over.svg');
}
.b_mute {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 64px;
    margin-top: 5px;
    pointer-events: auto;
    background-repeat: no-repeat;
    background-size: 64px 64px;
    background-image: url('../media/b_sound_on.svg');
}
.b_mute:hover {
    cursor: pointer;
    background-image: url('../media/b_sound_on_over.svg');
}
.b_mute_on {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 64px;
    margin-top: 5px;
    pointer-events: auto;
    background-repeat: no-repeat;
    background-size: 64px 64px;
    background-image: url('../media/b_sound_off.svg');
}
.b_mute_on:hover {
    cursor: pointer;
    background-image: url('../media/b_sound_off_over.svg');
}
.b_pause {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 64px;
    margin-top: 5px;
    pointer-events: auto;
    background-repeat: no-repeat;
    background-size: 64px 64px;
    background-image: url('../media/b_pause.svg');
}
.b_pause:hover {
    cursor: pointer;
    background-image: url('../media/b_pause_over.svg');
}

/*==========================*/
/* title screen */
/*==========================*/

.film_logo_block {
    position: absolute;
    display: block;
    top: 20px;
    left: 0px;
    text-align: center;
    pointer-events: none;
    color: #fcc884;
    font-size: 14px;
    font-family: "MontserratBold";
}
.film_logo_date {
    color: #ffffff;
    font-size: 32px;
    font-family: "Dimbo-Regular";
    text-shadow: 0px 3px 3px rgba(0,0,0,1);
}
.film_logo_img {
    height: 176px;
    width: auto;
}
.game_logo {
    position: absolute;
    display: block;
    font-size: 74.7px;
    line-height: 70px;
    left: 0px;
    top: 227px;
    width: 350px;
	height: 200px;
    text-align: center;
    white-space: nowrap;
    color: white; /* #b0de12; */
    font-family: "Dimbo-Regular";
    text-shadow: 0px 10px 0px rgba(1, 1, 1, 0.69);
    pointer-events: none;
}

.title_link_group{
	position:absolute;
	bottom:5px;
	height:20px;
	width:650px;
	left: 50%;
	margin-left:-325px;
}
.title_links{
  font-size: 16px;
  font-family: "MontserratRegular";
  color: rgb(253, 253, 253);
}
.title_links:hover {
    color: #faaf1e;
}
.title_links:active {
    color: #faaf1e;
}
.title_links:visited {
    color: #ffffff;
}
.title_MPAA{
	position:absolute;
	right:5px;
	bottom:5px;
	width:114px;
	height:54px;
    pointer-events: none;
}

.game_title {
    position: absolute;
    display: block;
    width: 563px;
    height: 547px;
    right: 0px;
    bottom: 50px;
    /*pointer-events: none;*/
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../media/game_title.png');
}
.game_title2 {
    position: absolute;
    display: block;
    left: 0px;
    width: 549px;
    height: 350px;
    bottom: -30px;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../media/game_title2.png');
}
.b_main {
    z-index: 1;
    position: absolute;
    display: block;
    left: -25px;
    top: 25px;
    width: 133px;
    height: 35px;
    font-size: 24px;
    text-align: center;
    line-height: 35px;
    color: #ffffff;
    white-space: nowrap;
    padding-left: 35px;
    padding-right: 25px;
    border-radius: 0px 25px 25px 0px;
    font-family: "Dimbo-Regular";
    border-width: 4px;
    border-color: rgb(39, 162, 213);
    background-color: rgb(255, 255, 255);
    /*background: linear-gradient(#8192a4, #1c2236, #1b2136);*/
    box-shadow: 0px 13px 0px 0px rgba(1, 1, 1, 0.32);
    cursor: pointer;
    -webkit-transition: left 0.25s; /* Safari */
    transition: left 0.25s;
}
/*inner panel*/
.b_main::before {
    z-index: -1;
    content: '';
    position: absolute;
    display: block;
	vertical-align: middle;
    top: 3px;
    left: 0px;
    height: calc(100% - 6px);
    width: calc(100% - 3px);
    border-radius: 0px 22px 22px 0px;
    background: linear-gradient(#1c1d21, #394750, #323e46);
}
.b_main:hover {
    left: 0px;
}
.b_play {
    z-index: 1;
    position: absolute;
    display: block;
    left: 50px;
    bottom: 45px;
    height: 90px;
    min-width: 300px;
    font-size: 65px;
    text-align: center;
	vertical-align: middle;
    line-height: 82px;
    color: #ffffff;
    white-space: nowrap;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 34px;
    font-family: "Dimbo-Regular";
    border-style: solid;
    border-width: 4px;
    border-color: rgb(1, 145, 49);
    background-color: #7ebd2e;
    box-shadow: 0px 8px 0px 0px rgba(1, 1, 1, 0.4);
    cursor: pointer;
    -ms-transform-origin: 50% 50%; /* IE 9 */
    -webkit-transform-origin: 50% 50%; /* Chrome, Safari, Opera */
    transform-origin: 50% 50%;
}
.b_instructions {
    z-index: 1;
    position: absolute;
    display: block;
    right: 200px;
    bottom: 85px;
    height: 90px;
    width: 92px;
    font-size: 70px;
    text-align: center;
	vertical-align: middle;
    line-height: 79px;
    color: #ffffff;
    white-space: nowrap;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 30px;
    font-family: "Dimbo-Regular";
    border-style: solid;
    border-width: 4px;
    border-color: rgb(153, 108, 188);
    background-color: #f10377;
    box-shadow: 0px 6px 0px 0px rgba(0, 0, 0, 0.32);
    cursor: pointer;
    -ms-transform-origin: 50% 50%; /* IE 9 */
    -webkit-transform-origin: 50% 50%; /* Chrome, Safari, Opera */
    transform-origin: 50% 50%;
}
/*==========================*/
/* instructions screen */
/*==========================*/

.instructions_header {
    position: relative;
    display: block;
    font-size: 45px;
    margin-top: 10px;
    white-space: nowrap;
    font-family: "Dimbo-Regular";
    color: white;
    pointer-events: none;
}
.instructions_image {
    position: absolute;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
/*==========================*/
/* recap screen */
/*==========================*/


.character_recap {
    position: absolute;
    display: block;
    width: 563px;
    height: 547px;
    right: -100px;
    bottom: 0px;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../media/cruise_title.png');
}
.recap_table {
    position: absolute;
    display: block;
    font-size: 130px;
    line-height: 70px;
    left: 0px;
    top: 110px;
    text-align: center;
    white-space: nowrap;
    color: #b0de12;
    padding: 10px;
    text-shadow: 0px 6px 6px rgba(0,0,0,1);
    font-family: "Dimbo-Regular";
    pointer-events: none;
}
.recap_tablecell {
    padding-left: 10px;
    padding-right: 10px;
    pointer-events: none;
}
.recap_unlock_text {
    font-size: 36px;
    font-family: "Dimbo-Regular";
    color: rgb(0, 0, 0);
    white-space: nowrap;
    pointer-events: none;
    text-align: center;
    position: absolute;
    left: 341px;
    top: 340px;
    width: 444px;
    height: 26px;
}
.recap_unlock_text_both {
    font-size: 26px;
    font-family: "Dimbo-Regular";
    color: rgb(0, 0, 0);
    line-height: 26px;
    white-space: wrap;
    pointer-events: none;
    text-align: center;
    position: absolute;
    left: 250px;
    top: 336px;
    width: 200px;
    height: 64px;
}
.recap_unlock {
    border-radius: 23px;
    background-color: rgb(255, 245, 104);
    position: absolute;
    left: -27px;
    top: 331px;
    width: 741px;
    height: 65px;
}
/*==========================*/
/* loader */
/*==========================*/



.loader_spinner {
    position: absolute;
    display: block;
    width: 256px;
    height: 256px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../media/TeenTitansLoader_White.gif')
}
.loader_bar {
    position: absolute;
    display: block;
    width: 256px;
    height: 20px;
    border: 2px solid white;
    border-radius: 20px;
    overflow: hidden;
}
.loader_bar_fill {
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 0%;
    background: linear-gradient(#b0de12, #cde922, #81a606);
}
/*==========================*/
/* pause menu */
/*==========================*/


.pause_menu_block {
    position: relative;
    display: inline-block;
}
.pause_menu {
    position: relative;
    display: block;
    color: white;
    margin-top: 10px;
    margin-bottom: 10px;
    white-space: nowrap;
    text-align: center;
    font-family: "Dimbo-Regular";
    font-size: 40px;
    letter-spacing: 1px;
    padding: 10px;
    padding-right: 30px;
    padding-left: 30px;
    width: 100%;
    border: 2px solid white;
    border-radius: 30px;
    background-color: rgba(0,0,0,0.5);
    cursor: pointer;
}
/*==========================*/
/* legal */
/*==========================*/


#div_copyright{
  text-decoration: none !important;
  position: absolute;
  display: block;
  right: 20px;
  top: 0px;
  letter-spacing: 1px;
  font-size: 12px;
  text-align: right;
  font-family: "MontserratBold";
  color: #ffba00;
  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;
}

.copyright_link{
  text-decoration: none !important;
  pointer-events: auto;
  white-space: nowrap;
  cursor: pointer;
}
.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;
    font-size: 20px;
    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%;
}


.legal_block {
    position: relative;
    display: inline-block;
    top: 0px;
    width: 100%;
    padding: 8px;
    font-size: 14px;
    font-family: "MontserratRegular";
    color: #ffffff;
    text-align:center;
    pointer-events: none;
    background-color: #000000;
}

/*legal links*/
.legal_link {
    text-decoration: none;
    pointer-events: auto;
    white-space: nowrap;
    color: #ffffff;
    font-size: 12px;
    font-family: "MontserratRegular";
}

.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-size: 14px;
    font-family: "MontserratRegular";
}

.b_legal {
    position: absolute;
    display: block;
    top: -50px;
    left: 0px;
   letter-spacing: 1.5px;
    height: 50px;

    padding-right: 20px;
    padding-left: 120px;

    font-family: "MontserratRegular";
    text-align: center;
    line-height: 50px;
    font-size: 12px;
    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/rating_NR.png');


}
.b_legal:active {
    color: #faaf1e;
}
.b_legal:hover {
    color: #faaf1e;
}

.b_legal_mobile {
  position: absolute;
    display: block;
    top: -50px;
    left: 0px;
   
    height: 50px;

    padding-right: 20px;
    padding-left: 120px;

    font-family: "MontserratRegular";
    text-align: center;
    line-height: 50px;
    font-size: 12px;
    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/rating_NR.png');
}



.legal_image{
    position: relative;
    display: inline-block;
    margin: 5px;

    pointer-events: none;
    max-width: calc(100% - 40px);
}
/*==========================*/
/* game */
/*==========================*/


.hud_score {
    position: absolute;
    display: block;
    font-size: 30px;
    left: 15px;
    top: 0px;
    height: 30px;
    text-align: left;
    white-space: nowrap;
    color: #b0de12;
    font-family: "Dimbo-Regular";
    pointer-events: none;
}
.hud_score_amt {
    position: absolute;
    display: block;
    font-size: 72px;
    font-family: "Dimbo-Regular";
    color: rgb(255, 255, 255);
    text-align: center;
    text-shadow: 0px 6px 0px rgba(1, 1, 1, 0.61);
    left: 50%;
    top: 6.73px;
    white-space: nowrap;
    width: 229px;
    height: 59px;
}
.hud_messages {
    position: absolute;
    display: none;
    font-size: 120px;
    white-space: nowrap;
    color: #ffffff;
    font-family: "Dimbo-Regular";
    text-shadow: 0px 6px 6px rgba(0,0,0,1);
    pointer-events: none;
}
/*==========================*/
/* picker 					*/
/*==========================*/

.PickerElements {
    position: absolute;
    background-size: contain;
    left: 0px;
    top: 0px;
    width: 960px;
    height: 540px;
}
.PickerHeader {
    font-size: 32px;
    font-family: "Dimbo-Regular";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: center;
    position: absolute;
    left: 88.843px;
    top: 2.99px;
    width: 567.167px;
    height: 48.844px;
    z-index: 20;
}
.PickerBackground {
    background-image: url("../media/picker/PickerBackground.jpg");
    background-size: contain;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 960px;
    height: 540px;
}
.CyborgLockBlock,.RavenLockBlock,.BeastBoyLockBlock,.RobinBlock,.StarfireBlock,.RavenBlock,.CyborgBlock,.BeastBoyBlock {
    position: absolute;
    background-size: contain;
    left: 0px;
    bottom: 0px;
    width: 960px;
    height: 540px;
}
.BeastBoySmallLock {
    background-image: url("../media/picker/small_lock.png");
    position: absolute;
    background-size: contain;
    left: 809px;
    top: 247px;
    width: 29px;
    height: 41px;
}
.BeastBoyLockText {
    font-size: 21px;
    font-family: "Dimbo-Regular";
    color: rgb(255, 255, 255);
    line-height: 36px;
    text-align: center;
    position: absolute;
    background-size: contain;
    left: 827px;
    top: 218px;
    width: 145px;
    height: 106px;
}
.BeastBoyLockBackground {
    border-style: solid;
    border-width: 3px;
    border-color: rgb(255, 255, 255);
    border-radius: 25px;
    background-color: rgb(52, 13, 122);
    opacity: 0.612;
    position: absolute;
    background-size: contain;
    left: 827px;
    top: 218px;
    width: 145px;
    height: 106px;
}

.CyborgSmallLock {
    background-image: url("../media/picker/small_lock.png");
    position: absolute;
    background-size: contain;
    left: 598px;
    top: 247px;
    width: 29px;
    height: 41px;
}
.CyborgLockText {
    font-size: 21px;
    font-family: "Dimbo-Regular";
    color: rgb(255, 255, 255);
    line-height: 36px;
    text-align: center;
    position: absolute;
    background-size: contain;
    left: 616px;
    top: 218px;
    width: 145px;
    height: 106px;
}
.CyborgLockBackground {
    border-style: solid;
    border-width: 3px;
    border-color: rgb(255, 255, 255);
    border-radius: 25px;
    background-color: rgb(52, 13, 122);
    opacity: 0.612;
    position: absolute;
    background-size: contain;
    left: 616px;
    top: 218px;
    width: 145px;
    height: 106px;
}

.RavenSmallLock {
    background-image: url("../media/picker/small_lock.png");
    position: absolute;
    background-size: contain;
    left: 387px;
    top: 247px;
    width: 29px;
    height: 41px;
}
.RavenLockText {
    font-size: 21px;
    font-family: "Dimbo-Regular";
    color: rgb(255, 255, 255);
    line-height: 36px;
    text-align: center;
    position: absolute;
    background-size: contain;
    left: 405px;
    top: 218px;
    width: 145px;
    height: 106px;
}
.RavenLockBackground {
    border-style: solid;
    border-width: 3px;
    border-color: rgb(255, 255, 255);
    border-radius: 25px;
    background-color: rgb(52, 13, 122);
    opacity: 0.612;
    position: absolute;
    background-size: contain;
    left: 405px;
    top: 218px;
    width: 145px;
    height: 106px;
}
.MainSite {
    position: absolute;
    background-size: contain;
    left: 0px;
    top: 0px;
    width: 960px;
    height: 540px;
	
}
.PickerBackButton {
    font-size: 28px;
    font-family: "Dimbo-Regular";
    color: rgb(255, 255, 255);
    text-align: center;
	vertical-align: middle;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(153, 108, 188);
    border-radius: 20px;
    background-color: #f10377;
    box-shadow: 0px 14px 0px 0px rgba(1, 1, 1, 0.32);
    padding-left: 60px;
    position: absolute;
    background-size: contain;
    left: -54px;
    /*bottom: 85px;*/
	top: 12px;
    width: 136px;
    height: 38px;
}
.PickerMainButton {
    font-size: 24px;
    font-family: "Dimbo-Regular";
    color: rgb(255, 255, 255);
    line-height: 29px;
    text-align: center;
	vertical-align: middle;
    border-style: solid;
    border-width: 4px;
    border-color: rgb(39, 162, 213);
    border-radius: 20px;
    background-color: black;
    box-shadow: 0px 7px 0px 0px rgba(1, 1, 1, 0.32);
    position: absolute;
    background-size: contain;
    left: -24px;
    top: 12px;
    width: 134px;
    height: 36px;
}
.PickerPlayButton {
    font-size: 52px;
    font-family: "Dimbo-Regular";
    color: white;
    line-height: 57px;
    text-align: center;
	vertical-align: middle;
    position: absolute;
    border-style: solid;
    border-width: 8px;
    background-color: #72b317;
    border-color: rgb(1, 145, 49);
    box-shadow: 0px 16px 0px 0px rgba(1, 1, 1, 0.4);
    border-radius: 40px;
    left: 341px;
    bottom: 15px;
    width: 262px;
    height: 72px;
}
.PickerHeading {
    font-size: 32px;
    font-family: "Dimbo-Regular";
    color: rgb(255, 255, 255);
    line-height: 36px;
    text-align: center;
    position: absolute;
    background-size: contain;
    left: 88.843px;
    top: 2.99px;
    width: 567.167px;
    height: 48.844px;
}
.LightRays {
    background-image: url("../media/picker/lightray.png");
	background-size:cover;
    position: absolute;
    left: 197px;
    top: -6px;
    width: 157px;
    height: 351px;
    z-index: 4;
}
.BeastBoyName {
    font-size: 32px;
    font-family: "Dimbo-Regular";
    color: rgb(16, 6, 43);
    line-height: 36px;
    text-align: center;
    position: absolute;
    background-size: contain;
    top: 340px;
    left: 775px;
    width: 169px;
}
.BeastBoyPower {
    font-size: 25px;
    font-family: "Dimbo-Regular";
    color: rgb(16, 6, 43);
    line-height: 26px;
    text-align: center;
    position: absolute;
    background-size: contain;
    top: 370px;
    left: 775px;
    width: 169px;
    height: 121.864px;
}
.BeastBoyLightRays {
    background-size: contain;
    position: absolute;
    left: 775px;
    top: 0px;
    width: 169px;
    height: 332px;
}
.BeastBoyBody {
    background-image: url("../media/picker/BeastBoyBody.png");
    background-size: contain;
    position: absolute;
    left: 775px;
    top: 146px;
    width: 169px;
    height: 182px;
}
.CyborgName {
    font-size: 32px;
    font-family: "Dimbo-Regular";
    color: rgb(16, 6, 43);
    line-height: 36px;
    text-align: center;
    position: absolute;
    background-size: contain;
    top: 340px;
    left: 567px;
    width: 204px;
}
.CyborgPower {
    font-size: 25px;
    font-family: "Dimbo-Regular";
    color: rgb(16, 6, 43);
    line-height: 26px;
    text-align: center;
    position: absolute;
    background-size: contain;
    top: 370px;
    left: 567px;
    width: 204px;
    height: 122.099px;
}
.CyborgLightRays {
    background-size: contain;
    position: absolute;
    left: 567px;
    top: 0px;
    width: 204px;
    height: 332px;
}
.CyborgBody {
    background-image: url("../media/picker/CyborgBody.png");
    background-size: contain;
    position: absolute;
    left: 567px;
    top: 51px;
    width: 204px;
    height: 279px;
}
.RavenName {
    font-size: 32px;
    font-family: "Dimbo-Regular";
    color: rgb(16, 6, 43);
    line-height: 36px;
    text-align: center;
    position: absolute;
    background-size: contain;
    top: 340px;
    left: 357px;
    width: 197px;
}
.RavenPower {
    font-size: 25px;
    font-family: "Dimbo-Regular";
    color: rgb(16, 6, 43);
    line-height: 26px;
    text-align: center;
    position: absolute;
    background-size: contain;
    top: 370px;
    left: 357px;
    width: 197px;
    height: 121.286px;
}
.RavenLightRays {
    background-size: contain;
    position: absolute;
    left: 357px;
    top: 0px;
    width: 197px;
    height: 332px;
}
.RavenBody {
    background-image: url("../media/picker/RavenBody.png");
    background-size: contain;
    position: absolute;
    left: 357px;
    top: 91px;
    width: 197px;
    height: 198px;
}
.StarfireName {
    font-size: 32px;
    font-family: "Dimbo-Regular";
    color: rgb(16, 6, 43);
    line-height: 36px;
    text-align: center;
    position: absolute;
    background-size: contain;
    top: 340px;
    left: 203px;
    width: 148px;
}
.StarfirePower {
    font-size: 25px;
    font-family: "Dimbo-Regular";
    color: rgb(16, 6, 43);
    line-height: 26px;
    text-align: center;
    position: absolute;
    background-size: contain;
    top: 370px;
    left: 203px;
    width: 148px;
    height: 121.286px;
}
.StarfireLightRays {
    background-size: contain;
    position: absolute;
    left: 203px;
    top: 0px;
    width: 148px;
    height: 332px;
}
.StarfireBody {
    background-image: url("../media/picker/StarfireBody.png");
    background-size: contain;
    position: absolute;
    left: 203px;
    top: 88px;
    width: 148px;
    height: 244px;
}
.RobinName {
    font-size: 32px;
    font-family: "Dimbo-Regular";
    color: rgb(16, 6, 43);
    line-height: 36px;
    text-align: center;
    position: absolute;
    background-size: contain;
    top: 340px;
    left: 39px;
    width: 165px;
    width: 150px;
}
.RobinPower {
    font-size: 25px;
    font-family: "Dimbo-Regular";
    color: rgb(16, 6, 43);
    line-height: 26px;
    text-align: center;
    position: absolute;
    background-size: contain;
    top: 370px;
    left: 39px;
    width: 165px;
    height: 122.099px;
}
.RobinLightRays {
	background-size: contain;
    position: absolute;
    left: 39px;
    top: 0px;
    width: 165px;
    height: 332px;
}
.RobinBody {
    background-image: url("../media/picker/RobinBody.png");
    background-size: contain;
    position: absolute;
    left: 39px;
    top: 88px;
    width: 165px;
    height: 244px;
}

/*==========================*/
/* Recap page				*/
/*==========================*/

.RecapMoreGamesButton {
    font-size: 37.5px;
    font-family: "Dimbo-Regular";
    color: rgb(255, 255, 255);
    line-height: 54px;
    text-align: center;
	vertical-align: middle;
    position: absolute;
    background-size: contain;
    border-style: solid;
    border-width: 5px;
    border-color: rgb(255, 255, 255);
    border-radius: 33px;
    background-color: #f10377;
    left: 369px;
    bottom: 72px;
    width: 240px;
    height: 64px;
	cursor:pointer;
}
.RecapPlayAgainButton {
    font-size: 44px;
    font-family: "Dimbo-Regular";
    color: rgb(255, 255, 255);
    line-height: 65px;
    text-align: center;
	vertical-align: middle;
    position: absolute;
    background-size: contain;
    border-style: solid;
    border-width: 4px;
    border-color: rgb(1, 145, 49);
    border-radius: 33px;
    background-color: #7ebd2e;
    box-shadow: 0px 8px 0px 0px rgba(1, 1, 1, 0.4);
    left: 101px;
    bottom: 75px;
    width: 250px;
    height: 70px;
	cursor:pointer;
}
.UnlockRaven {
    background-image: url("../media/recap/UnlockRaven.png");
    position: absolute;
    background-size: contain;
    left: 0px;
    top: 317px;
    width: 111px;
    height: 96px;
}
.UnlockCyborg {
    background-image: url("../media/recap/UnlockCyborg.png");
    position: absolute;
    background-size: contain;
    left: 0px;
    bottom: 0px;
    width: 107px;
    height: 96px;
}
.CyborgRecap {
    background-image: url("../media/recap/CyborgRecap.png");
    position: absolute;
    background-size: contain;
    right: 0px;
    bottom: 0px;
    width: 379px;
    height: 416px;
}
.RobinRecap {
    background-image: url("../media/recap/RobinRecap.png");
    position: absolute;
    background-size: contain;
    right: 0px;
    bottom: 0px;
    width: 307px;
    height: 426px;
}
.BeastBoyRecap {
    background-image: url("../media/recap/BeastBoyRecap.png");
    position: absolute;
    background-size: contain;
    right: 0px;
    bottom: 0px;
    width: 314px;
    height: 258px;
}
.StarfireRecap {
    background-image: url("../media/recap/StarfireRecap.png");
    position: absolute;
    background-size: contain;
    right: 0px;
    bottom: 0px;
    width: 277px;
    height: 404px;
}
.RavenRecap {
    background-image: url("../media/recap/RavenRecap.png");
    position: absolute;
    background-size: contain;
    right: 0px;
    top: 128px;
    width: 367px;
    height: 370px;
}
.MainSite {
    position: absolute;
    background-size: contain;
    left: 0px;
    top: 0px;
    width: 960px;
    height: 540px;
}
.RecapMainSiteButton {
    font-size: 24px;
    font-family: "Dimbo-Regular";
    color: rgb(255,255,255);
    text-align: center;
    position: absolute;
    background-size: contain;
    border-style: solid;
    border-width: 4px;
    border-color: rgb(39, 162, 213);
    border-radius: 0px 22px 22px 0px;
    background-color: rgb(0,0,0);
    box-shadow: 0px 7px 0px 0px rgba(1, 1, 1, 0.32);
	padding-left:20px;
    left: -25px;
    top: 25px;
	line-height: 30px;
	vertical-align: middle;
    width: 134px;
    height: 36px;
	cursro:pointer;
}
.RecapUnlockText {
    font-size: 32px;
    font-family: "Dimbo-Regular";
    color: rgb(255, 255, 255);
    line-height: 32px;
    text-align: center;
    position: absolute;
    background-size: contain;
    left: 215px;
    top: 348px;
    width: 450px;
	pointer-events: none;
}
.RecapUnlockBackground {
    border-radius: 23px;
    background-color: rgb(97, 0, 224);
    position: absolute;
    background-size: contain;
    left: -65px;
    top: 335px;
    width: 741px;
    height: 64px;
	pointer-events: none;
}
.RecapScoreText {
	font-size: 62px;
	font-family: "Dimbo-Regular";
	color: rgb(255, 255, 255);
	line-height: 62px;
	text-align: right;
	text-shadow: 0px 7px 0px rgba(1, 1, 1, 0.69);
	position: absolute;
	background-size: contain;
	left: 0px;
	top: 200px;
	width: 320px;
	height: 70px;
	pointer-events: none;
}
.RecapScoreDisplay {
    font-size: 62px;
    font-family: "Dimbo-Regular";
    color: rgb(255, 255, 255);
    line-height: 62px;
    text-align: left;
    text-shadow: 0px 7px 0px rgba(1, 1, 1, 0.69);
    position: absolute;
    background-size: contain;
    left: 340px;
    top: 200px;
    width: 160px;
    height: 70px;
	pointer-events: none;
}
.recap_unlock_icon_area {
    background-size: cover;
    position: absolute;
    left: 15px;
    top: 307px;
    width: 210px;
    height: 111px;
	text-align: right;
	pointer-events: none;
}
.RecapEnemiesLabel {
	font-size: 62px;
	font-family: "Dimbo-Regular";
	color: rgb(255, 255, 255);
	line-height: 62px;
	text-align: right;
	text-shadow: 0px 7px 0px rgba(1, 1, 1, 0.69);
	position: absolute;
	background-size: contain;
	left: 0px;
	top: 129px;
	width: 320px;
	height: 70px;
	pointer-events: none;
}
.RecapEnemiesDisplay {
    font-size: 62px;
    font-family: "Dimbo-Regular";
    color: rgb(255, 255, 255);
    line-height: 62px;
    text-align: left;
    text-shadow: 0px 7px 0px rgba(1, 1, 1, 0.69);
    position: absolute;
    background-size: contain;
    left: 340px;
    top: 129px;
    width: 160px;
    height: 70px;
	pointer-events: none;
}
.FilmLoop {
    background-image: url(../media/recap/FilmLoopRecap.png);
    position: absolute;
    background-size: contain;
    left: 0px;
    top: 79px;
    width: 914px;
    height: 236px;
	pointer-events: none;
}

.browserxml img{
	position: absolute;
	left:18%;
	top:18%;
}