/**************************************************
 * I M P O R T S
 **************************************************/

@import url(//fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300italic,700&subset=latin,greek);
@import url(//fonts.googleapis.com/css?family=Comfortaa:700,400&subset=latin,greek);




/**************************************************
 * W E B    F O N T S
 **************************************************/

@font-face {
	font-family: 'Press Start 2P';
	font-style: normal;
	font-weight: 400;
	src: url('/fonts/PressStart2Play.eot');
	src: url('/fonts/PressStart2Play.eot?iefix') format('eot'),
	url('/fonts/PressStart2Play.woff') format('woff'),
	url('/fonts/PressStart2Play.ttf') format('truetype');
}




/**************************************************
 * N O R M A L I Z E
 **************************************************/

* {
	margin: 0;
	padding: 0;
}

html, body {
	height: auto;
}

body {
	color: #404040;
	font-family: 'Open Sans Condensed', sans-serif;
	/* min-width: 600px; */
}

header, section, footer {
	display: block;
}

a {
	/* color: #404040; */
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: color 1s ease, color 1s ease;
    -moz-transition: color 1s ease, color 1s ease;
    -o-transition: color 1s ease, color 1s ease;
    transition: color 1s ease, color 1s ease;
}

a, a:hover, a:active, a:focus,
input, input:hover, input:active, input:focus,
textarea, textarea:hover, textarea:active, textarea:focus {
	outline: 0;
	-moz-outline-style: none;
}

a:hover {
	/* color: #c0392b; */
}

ul {
	list-style: none;
}


body::-webkit-scrollbar {
    width: 0.7em;
    background-color: #d2d2d2;
}
 
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}
 
body::-webkit-scrollbar-thumb {
  background-color: blue; /* #222 */
  /* outline: 1px solid #34495e; */
}





/**************************************************
 * F O R M S    &    B U T T O N S
 **************************************************/
	
input, select, textarea { 
	padding: 0.4em; 
	margin: 0.4em;	
}	

input[type=button], input[type=submit] { 
	background: #326a21;
	text-transform: uppercase;
	border-radius: 15px;
	color: #fff;
	border: none;
}

input[type=text], input[type=password], textarea {
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3) inset;
}

input[type=button]:hover, input[type=button]:focus, input[type=submit]:hover, input[type=submit]:focus { 
	background: #367e20;
	cursor: pointer;
}

input[type=text]:hover, input[type=text]:focus, input[type=password]:hover, input[type=password]:focus, textarea:hover, textarea:focus {
	border: 1px solid #009600;
}




/**************************************************
 * L A Y O U T
 **************************************************/


.wrapper { 
	width: 100%; 
}

.mobile { 
	display: none; 
}

.main {
	display: inline-block;
	position: static;
    margin: 0 auto;
    text-align: left;
}
	
.header, .content, .footer { 
	margin: 30px;
	max-width: 700px;
	background: rgba(0,0,0,0.4);
	color: rgba(255,255,255,0.9);
	color: rgb(250,250,250);
	padding: 4em;
    width: 700px;
	-webkit-box-shadow: 2px 2px 5px rgba(50, 50, 50, 0.75);
	-moz-box-shadow:    2px 2px 5px rgba(50, 50, 50, 0.75);
	box-shadow:         2px 2px 5px rgba(50, 50, 50, 0.75);
}
	
.content { 
    min-height: 400px;
}

@media screen and (max-width: 1500px) {
    .main {
        position:absolute;
        left: 320px;
    }
}

/* Mobile CSS - Medium (Tablets, small Screens) */

@media screen and (max-width: 1050px) {

    .main {
        background: rgba(0,0,0,0.4);
		background-attachment: fixed;
	}
	.header, .content, .footer {
        margin: 0;
        max-width: none;
        width: auto;
        height:100%;
        background: none;
    }

}

/* Mobile CSS - Small (Smartphones) */

@media screen and (max-width: 650px) {

.main {	
	background: none; 
}

h1 {
	font-size: 1.8em;
}	

.mobile {
	display: block;
}

.nomobile { 
	display: none !important;
}

.header, .content, .footer { 
	margin: 0;
	max-width: 650px;
	/*padding: 5px 10px;*/
	padding: 5px 0;
}
	
.main { 
	position: relative;
	left: 0;
	width: 100%;	
	overflow-x: hidden;
}

.header > *, .content > *, .footer > * { 	
	margin: 5px 10px;
}

.footer { 
	position: relative; 
	margin-bottom: 0; 
	height: 40px;
}

}

.win-pop-up {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 10;
	background-image: url(/assets/image/background_win.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    /* background-color: #464646; */
}

.lose-pop-up {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 10;
	background-image: url(/assets/image/background_lose.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    /* background-color: #464646; */
}

.hidden-statistics {
	display:none;
}