/**
 * Copyright eLearning Brothers LLC 2012 All Rights Reserved
 */
div.game div.buttons {
    padding-top: 20px;
    text-align: center;
    clear: both;
    width: 100%;
}
div.game {
    -webkit-transform: translateZ(0);
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    background: black 50% 50% no-repeat;
    width: 720px;
    height: 540px;
    background-size: cover;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5);
    padding: 0;
    position: relative;
    overflow: hidden;
}
div.game div.logo3,
div.game div.logo2,
div.game div.logo1 {
    background: 50% 50% no-repeat;
    width: 0px;
    height: 0px;
    background-size: cover;
    position: absolute;
    z-index: 2;
}

div.game a.button {
    cursor: pointer;
    display: inline-block;
    color: white;
    background: #3787e0;
    border-radius: 8px;
    line-height: 35px;
    height: 35px;
    font-size: 1.5em;
    padding: 4px 50px;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);

    position: relative;
    z-index: 10;

    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.7),  0 2px 5px rgba(0,0,0,0.15), inset 0 -17px 0 rgba(0,0,0,0.10);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.7),  0 2px 5px rgba(0,0,0,0.15), inset 0 -17px 0 rgba(0,0,0,0.10);
    box-shadow: 0 0 10px rgba(0,0,0,0.7),  0 2px 5px rgba(0,0,0,0.15), inset 0 -17px 0 rgba(0,0,0,0.10);

}

div.game a.button:hover {
    color: white;
    background: #3787e0;
}

div.game a.button:active {
    top:1px;
    left:1px;
}

div.game>div {
    display: none;
}

div.game.step-0>div.step-0,
div.game.step-1>div.step-1,
div.game.step-2>div.step-2,
div.game.step-3>div.step-3,
div.game.step-4>div.step-4,
div.game.step-5>div.step-5 {
    display: block;
}

/* STEP 1 */
/* STEP 2 */
div.game div.step-2 {

}
div.game div.step-2-description {
    padding: 0px;
    background: white;
    border: 5px solid #CCC;
    margin: 0 auto;
    width: 600px;
    height: 290px;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.7);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.7);
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
}
div.game div.step-2-description>div {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 205px;
    min-height: 205px;
}
div.game div.step-2-description>div>div {
    margin: 10px;
}
/* STEp 3*/

div.game div.score {
    font-weight: bold;
    font-size: 30px;
    z-index: 100;
    text-shadow: 0px 0px 5px #000;
    text-align: right;

}

/* STEP 4 */

div.game .indicator{
color: #ccc;
font-size: 30px;
letter-spacing: 4px;
font-weight: bold;
}
div.game div.time {
    color: red;
    font-weight: bold;
    font-size: 36px;
    z-index: 10;
    position: relative;
}
div.game .step-4.answered .question-choose-wrapper {
    display: none;
}
div.game .buttons-continue-wheel #step4wheelbutton{
    -webkit-transform: translateZ(0);
	-webkit-transition-duration: 500ms;
	-moz-transition-duration: 500ms;
	-o-transition-duration: 500ms;
	-ms-transition-duration: 500ms;
	transition-duration:500ms;
	transition-property:top;
	left: -10px;
	top: 700px;
	opacity: 0;
	-webkit-transition-timing-function: ease-in;

}
div.game .buttons-continue-wheel #step4wheelbutton.show{
top: 260px;
opacity: 1;
}
div.game .step-4 .buttons.buttons-confirm,
div.game .step-4.unanswered .buttons.buttons-continue,
div.game .step-4.unanswered .question-answered-block-wrapper{
    display: none;
}
div.game .step-4.unanswered.type-multiple .buttons.buttons-confirm {
    display: block;
}
div.game .step-4.answered.incorrect .question-answered-block-wrapper h1{
    color: #FF5555;
}
div.game .step-4.answered.correct .question-answered-block-wrapper h1{
    color: #55FF55;
}

div.game .step-4 .result-answer-block{
display: none;
}
div.game .question-answered-block-wrapper>div {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 100%;
    min-height: 100%;
}
div.game .question-answered-block-wrapper>div>div {
    margin: 10px;
}
div.game .vertical .question-answered-block-wrapper {
    margin: 0 auto;
    margin-top: 0px;
    float: none;
}

div.game .question-choose-wrapper {
    float: left;
    margin-top: 0px;
}
div.game .vertical .question-choose-wrapper {
    float: none;
    margin: 0 auto;                
    margin-top: 0px;
    text-align: center;
}
div.game .vertical .question-choose {
    text-align: center;
    margin: 0 auto;
}
div.game .vertical .question-choose .variant {
    float: none;
    display: inline-block;
    text-align: left;
    margin: 5px 0px;
}
div.game .question-choose .variant {
    background: white;
    height: 60px;
    width: 300px;
    margin-bottom: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,1);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,1);
    cursor: pointer;
    position: relative; /*for eli*/
}
div.game .question-block{
margin-right: 335px;
}
div.game .question-block-wrapper {
    margin-top: 00px;
    margin-left: 25px;
    margin-right: 25px;
    float: left;
}
div.game .vertical .question-block-wrapper {
    float: none;
}
div.game .question-block-wrapper.transparent {
    background: transparent;

    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
div.game .question-block-wrapper.transparent>div>div {
    /*display: none;*/
}
div.game .question-block-wrapper.transparent>div.question-block-wrapper-inner {
    background: transparent;

    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
div.game .question-block-wrapper>div.question-image {
    background-size: cover;
    position: absolute;
}
div.game .question-block-wrapper>div.question-image,
div.game .question-block-wrapper>div.question-block-wrapper-inner {
    background:  0 0 no-repeat;
    width: 300px;
    height: 262px;
}
div.game .question-block-wrapper.vertical>div.question-image,
div.game .question-block-wrapper.vertical>div.question-block-wrapper-inner {
    width: 600px;
    height: 100px;
    margin: 0 auto;
}

div.game .question-block-wrapper>div.question-block-wrapper-inner {
    background-size: cover;
}
div.game .question-block-wrapper>div.question-block-wrapper-inner>div {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 100%;
    min-height: 100%;
}
div.game .question-block-wrapper>div.question-block-wrapper-inner>div>div {
    margin: 10px;
}
/* STEP 5 */
div.game .result-block-wrapper {
    background: white;
    width: 600px;
    margin: 0 auto;
    height: 290px;
    border: 5px solid #ccc;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.7);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.7);
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    margin-top: 50px;
}
div.game .result-block-wrapper>div {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 225px;
    min-height: 225px;
}
div.game .result-block-wrapper>div>div {
    margin: 10px;
}
div.game div.result-block div.score-description {
    font-size: 20px;
    font-weight: bold;
    padding-top: 50px;
    color: #000;
	position: absolute;
	bottom: 10px;
	right: 15px;
}

div.game div.result-block div.score-description span{
    font-size: 36px;
    color: #a7a7a7;
}

/* ANIMATION */

div.game .light{
width: 8px;
height: 8px;
border-radius: 6px;
position: absolute;
border: 2px solid #353535;
background: #57523E; /* Old browsers */
background: -moz-radial-gradient(center, ellipse cover,  #57523E 0%, #000000 100%); /* FF3.6+ */
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#57523E), color-stop(100%,#000000)); /* Chrome,Safari4+ */
background: -webkit-radial-gradient(center, ellipse cover,  #57523E 0%,#000000 100%); /* Chrome10+,Safari5.1+ */
background: -o-radial-gradient(center, ellipse cover,  #57523E 0%,#000000 100%); /* Opera 12+ */
background: -ms-radial-gradient(center, ellipse cover,  #57523E 0%,#000000 100%); /* IE10+ */
background: radial-gradient(center, ellipse cover,  #57523E 0%,#000000 100%); /* W3C */
/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#57523E', endColorstr='#000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

}

div.game .light.glow{
background: #fffc02; /* Old browsers */
background: -moz-radial-gradient(center, ellipse cover,  #fffc02 25%, #faa500 100%); /* FF3.6+ */
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(25%,#fffc02), color-stop(100%,#faa500)); /* Chrome,Safari4+ */
background: -webkit-radial-gradient(center, ellipse cover,  #fffc02 25%,#faa500 100%); /* Chrome10+,Safari5.1+ */
background: -o-radial-gradient(center, ellipse cover,  #fffc02 25%,#faa500 100%); /* Opera 12+ */
background: -ms-radial-gradient(center, ellipse cover,  #fffc02 25%,#faa500 100%); /* IE10+ */
background: radial-gradient(center, ellipse cover,  #fffc02 25%,#faa500 100%); /* W3C */
/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fffc02', endColorstr='#faa500',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

div.game .start_button{
    position: absolute;
    top: 184px;
    left: 184px;
    width: 96px;
    height: 96px;
    vertical-align: middle;
    line-height: 96px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 32px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    letter-spacing: -1px;
    border: 2px solid #004fbd;
    z-index: 100;
    background: #62c8fd; /* Old browsers */
    background: -moz-radial-gradient(center, ellipse cover,  #62c8fd 25%, #0268cd 100%); /* FF3.6+ */
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(25%,#62c8fd), color-stop(100%,#0268cd)); /* Chrome,Safari4+ */
    background: -webkit-radial-gradient(center, ellipse cover,  #62c8fd 25%,#0268cd 100%); /* Chrome10+,Safari5.1+ */
    background: -o-radial-gradient(center, ellipse cover,  #62c8fd 25%,#0268cd 100%); /* Opera 12+ */
    background: -ms-radial-gradient(center, ellipse cover,  #62c8fd 25%,#0268cd 100%); /* IE10+ */
    background: radial-gradient(center, ellipse cover,  #62c8fd 25%,#0268cd 100%); /* W3C */
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#62c8fd', endColorstr='#0268cd',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

    cursor: pointer;
}
div.game div.not_hover>div.start_button{
    background: #62c8fd; /* Old browsers */
    background: -moz-radial-gradient(center, ellipse cover,  #62c8fd 25%, #0268cd 100%); /* FF3.6+ */
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(25%,#62c8fd), color-stop(100%,#0268cd)); /* Chrome,Safari4+ */
    background: -webkit-radial-gradient(center, ellipse cover,  #62c8fd 25%,#0268cd 100%); /* Chrome10+,Safari5.1+ */
    background: -o-radial-gradient(center, ellipse cover,  #62c8fd 25%,#0268cd 100%); /* Opera 12+ */
    background: -ms-radial-gradient(center, ellipse cover,  #62c8fd 25%,#0268cd 100%); /* IE10+ */
    background: radial-gradient(center, ellipse cover,  #62c8fd 25%,#0268cd 100%); /* W3C */
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#62c8fd', endColorstr='#0268cd',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    cursor: default;
}

div.game .start_button:hover {
background: #d0ecfb; /* Old browsers */
background: -moz-radial-gradient(center, ellipse cover,  #d0ecfb 0%, #d0ecfb 26%, #1076cc 100%); /* FF3.6+ */
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#d0ecfb), color-stop(26%,#d0ecfb), color-stop(100%,#1076cc)); /* Chrome,Safari4+ */
background: -webkit-radial-gradient(center, ellipse cover,  #d0ecfb 0%,#d0ecfb 26%,#1076cc 100%); /* Chrome10+,Safari5.1+ */
background: -o-radial-gradient(center, ellipse cover,  #d0ecfb 0%,#d0ecfb 26%,#1076cc 100%); /* Opera 12+ */
background: -ms-radial-gradient(center, ellipse cover,  #d0ecfb 0%,#d0ecfb 26%,#1076cc 100%); /* IE10+ */
background: radial-gradient(center, ellipse cover,  #d0ecfb 0%,#d0ecfb 26%,#1076cc 100%); /* W3C */
/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d0ecfb', endColorstr='#1076cc',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

}

div.game .arrow{
background: url(../config/images/arrow.png) no-repeat top;
height: 363px;
width: 66px;
	-webkit-transform:rotate(0deg);
	-webkit-transition-duration: 300ms;
	-moz-transition-duration: 300ms;
	-o-transition-duration: 300ms;
	-ms-transition-duration: 300ms;
	transition-duration: 300ms;
	-webkit-transition-timing-function:linear;


-moz-transform:rotate(0deg);
-o-transform:rotate(0deg);

position: absolute;
left: 200px;
top:53px;
z-index: 10;
}
div.game #animation {
    width: 700px;
    height: 420px;
    position: absolute;
    z-index: 3;
    background-size: auto auto;
}
div.game #animation {
    bottom: 105px;
    right: 10px;
}
div.game .question-choose .variant div.table {
    display: table;
    height: 100%;
    width: 100%;
    text-align: left;
    margin: 0px auto;
}
div.game  .question-choose .variant div.table>div {
    display: table-cell;
    vertical-align: middle;
    padding: 10px;
}
div.game  .question-choose .variant div.table>div div {
    width: 100%;
}

div.game #animation {
    display: block;
}

div.game #animationCanvas {
    position: absolute;
    z-index: 1;
}
.game>div {
    position: relative;
    z-index: 3;
}

div.game .vertical .question-choose-wrapper,
div.game .vertical .question-answered-block-wrapper,
div.game .vertical .question-block-wrapper {
    overflow: hidden;
    width: 557px;
    margin-left: 10px;
}
div.game .vertical .question-choose-wrapper,
div.game .vertical .question-answered-block-wrapper {
    width: 689px;
}

/*div.game .result-block-wrapper {*/
    /*margin-top: 0;*/
/*}*/

div.game div.score {
    z-index: 4;
}

body.gamebody {
    margin: 0 auto;
    width: 720px;
    height: 540px;
    /*padding: 50px;
    padding-top: 0px;*/
}

/*#error {
    background: url('../config/images/bad.png') 0 0 no-repeat;
    background-size: cover;
    z-index: 10;
    position: absolute;
}*/