/* CSS file for Unity WebGL games using the game.php template */
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

body {
    margin: 0;
}

.page {
    background-color: lightgray;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-flow: column;
}

.header {
    background-color: #002030;
    background: linear-gradient(#004070, #002030);
    width: 100vw;
    height: 32px;
    display: flex;
    flex-flow: row;
    /*align-content: space-between;*/
}

.header img {
    
 margin-top: 5px;
   
    
    
}
.gameName {
     
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 1.3em;
    text-shadow: 1px 1px 0 black;
    margin-top: auto;
    margin-bottom: auto;
    padding-right: 10%;
    flex: 1;
    text-align: center;
    
}

.fullscreenButton {
    /* align-self: flex-end; */
    cursor: pointer;
    color: white;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    
}

.fullscreenButton:hover {
    color: lemonchiffon;
}

#gameContainer {
    /* width: 960px;
    height: 600px; */
    background-color: black;
    flex: 1 1 0;
    overflow: hidden;
    display: flex;
}

.loader {
    font-family: 'Roboto', sans-serif;
    color: white;
    margin-top: -71px;
    margin-left: -120px;
    width: 240px;
    height: 142px;
    z-index: 1000;
    position: fixed;
    top: 80%;
    left: 50%;
}

#progress {
    text-align: center;
    font-size: 1.2em;
}

#progress2 {
    text-align: center;
    font-size: 1.2em;
}

#ad {
	width:100%;
    height: 350px;
    position: absolute;
    top: 0;
    bottom: 1px;
	margin: auto;
	text-align:center;
	z-index: 1000;
}
#ad img{
	border-radius:10px;
	width:350px;
	height:250px;
	
	box-shadow: 1px 1px 5px black;

    transition:.1s;
    -webkit-transition:.1s;
    -moz-transition:.1s;
    -o-transition:.1s;
	

}
            
#ad .adPic {
    /*vertical-align: middle;*/
    bottom: 1px;
    left: 0;
    right: 0;
    
}

#LoadingGame{
    display:inline-block;
    position: absolute;
    width:100%;
    background-color:white;
    height:100%;
    overflow: hidden;
    z-index: 1100;
}
.page-bg {
  width:100%;
  height:100%;
  background-size: cover;
  background-repeat:no-repeat;
  background-position: center center;
  -webkit-filter: blur(15px);
  -moz-filter: blur(15px);
  -o-filter: blur(15px);
  -ms-filter: blur(15px);
  filter: blur(15px);
  position: absolute;
  left:0;
  top: 0;
  display: table;
}

#adTitle {
	width:100%;
    height: 350px;
    position: absolute;
    top: 0;
    bottom: 0;
	margin: auto;
	text-align:center;
}
#adTitle img{
	border-radius:10px;
	width:250px;
	
	box-shadow: 1px 1px 5px black;

    transition:.1s;
    -webkit-transition:.1s;
	

}
            
#adTitle .titleText {
    vertical-align: middle;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    color:#FFF;
	font-size:16px;
	line-height:26px;
}
#adTitle .titleText .GameNameText{
    vertical-align: middle;
    font-family:arial;
    color:#FFF;
	font-size:18px;
	line-height:45px;
	width:100%;
	height:45px;
	overflow:hidden;
	background:linear-gradient(to right,rgba(30,87,153,0) 0,rgba(0,0,0,.3) 50%,rgba(125,185,232,0) 100%);
}
#adTitle .titleText button{
    display: inline-block;
    background: #99c506;
	background: linear-gradient(#2EFE2E, #088A29);
	margin:10px;
    padding: 15px 25px;
    border-radius: 10px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
	
	box-shadow: 1px 1px 5px black;

    transition:.1s;
    -webkit-transition:.1s;
    -moz-transition:.1s;
    -o-transition:.1s;
				
}