@font-face { 
	font-family: 'GraphikSemibold';
	src: url('Images/GraphikSemibold.otf');
}

@font-face { 
	font-family: 'GraphikRegular';
	src: url('Images/GraphikRegular.otf');
}

body {
	background-color: #FFFC00!important;
	font-family: 'GraphikSemibold'!important;
	color: black!important;
}

h6 {
	font-family: 'GraphikRegular'!important;
}

p {
	font-family: 'GraphikRegular'!important;
	font-size: 9pt;
}

p span {
	font-family: 'GraphikSemibold';
}

*:focus {
    outline: none;
}

#input {
	height: 100vh;
	padding: 50px;
}

.logo {
	text-align: center;
}

.logo img {
	height: 40px;
}

.text {
	text-align: center;
	margin-top: 70px;
	z-index: 99;
}

.text h1 {
	font-size: 33pt;
	margin-top: 30px;
}

.text #errorMessage {
	color: red;
	display: none;
}

.text input {
	font-family: 'GraphikRegular'!important;
	border-radius: 10px;
	border: 0px solid;
	box-shadow: rgb(0 0 0 / 5%) 0px 0px 32px;
	padding: 15px 30px;
	margin-top: 25px;
}

.text button {
	background-color: black;
	color: white;
	border-radius: 30px;
	border: 0px solid;
	box-shadow: rgb(0 0 0 / 5%) 0px 0px 32px;
	padding: 12px 45px;
	margin-top: 30px;
}

.text .note {
	display: none;
	margin-top: 20px;
	transition: 0.2s;
}

.bitmojies {
	text-align: center;
	bottom: 0;
	left: 0;
	position: absolute;
	margin: auto;
	z-index: 1;
}

.bitmojies img {
	max-width: 80%;
	max-height: 20%;
}

/* LOADER CSS */

#loader {
	background-color: white;
	text-align: center;
	height: 100%;
	width: 100%;
	z-index: 99;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}

#loader img {
	height: 200px;
  	position: absolute;  
  	top: 50%;
  	left: 50%;
  	-ms-transform: translate(-50%, -50%);
  	transform: translate(-50%, -50%);
  	display: none;
}

#loader p {
	margin-top: 50px;
}

/* DATA */

#data {
	display: none;
	padding: 50px;
}

#data .text h1 {
	margin-bottom: 40px;
}

#data .text .row {
	margin-bottom: 20px;
}

#data .square {
	width: 75px;
	height: 75px;
	border-radius: 10px;
	background-color: #d4d3a9;
	opacity: 0.7;
  	animation-name: opacityAnime;
  	animation-duration: 2s;
	animation-iteration-count: infinite;
}

#data .rectangle {
	float: right;
	width: 90%;
	height: 35px;
	border-radius: 10px;
	margin-top: 20px;
	background-color: #d4d3a9;
	opacity: 0.7;
  	animation-name: opacityAnime;
  	animation-duration: 2s;
	animation-iteration-count: infinite;
}

@keyframes opacityAnime {
	25% {opacity: 0.4;}
	50% {opacity: 0.7;}
	75% {opacity: 0.4;}
}

#data .text p {
	font-size: 10pt;
	margin-top: 30px;
}

#data .text p span {
	font-family: 'GraphikRegular'!important;
	text-decoration: underline;
}














