@charset "utf-8";


/*** START OF FILE ***/


/********************/
/*** CUSTOM FONTS ***/
/********************/

@font-face {
	font-family: main;
	src: url(../fnt/main.woff);
}

/**************/
/*** GLOBAL ***/
/**************/

* {
	box-sizing: border-box;
}

img {
	display: block;
}

html, body { 
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	border: 0;
	padding: 0;
}

html {
	background-color: #00182E;
	font-family: main, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-touch-callout: none; 
	-webkit-user-select: none;
	user-select: none;
	overflow: hidden;
	overflow-y: auto;
}

/************/
/*** MAIN ***/
/************/

.container {
	position: relative;
	width: 100%;
	margin: 0 auto;	
	max-width: 1024px;
	padding: 20px;
}

.stage {
	position: relative;
	display: block;
	width: 100%;
}

.button {
	display: block;
	position: absolute;
	width: 72px;
	height: 72px;
	border-radius: 36px;
	cursor: pointer;
	text-decoration: none;
	background-repeat: no-repeat;
	background-position: center center;
	animation: button-animation .4s ease-in-out both;
}

@keyframes button-animation { 
	0% {
		opacity: 0;
		transform: scale(0); 
	}
	50% {
		opacity: 1.0;
		transform: scale(1.5); 
	}
	100% {
		opacity: 1.0;
		transform: scale(1.0); 
	}
}

.button-camera {
	left: 40px;
	top: 40px;
	background-image: url(../img/btn-camera.svg);
}

.button-take {
	display: none;
	left: 21.5%;
	top: 33.5%;
	background-image: url(../img/btn-take.svg);
}

.button-info {
	right: 40px;
	top: 40px;
	background-image: url(../img/btn-info.svg);
}

.button-download {
	right: 40px;
	bottom: 40px;
	background-image: url(../img/btn-download.svg);
}

.info {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8); 
	cursor: pointer;
}

.info-image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	animation: info-image-animation .4s ease-out both;
}

@keyframes info-image-animation { 
	0% {
		opacity: 0;
		transform: translateY(-50%); 
	}
	100% {
		opacity: 1.0;
		transform: translateY(0); 
	}
}

