html, body {
	margin: 0;
	padding: 0;
	touch-action: manipulation;
	
}


body {
		background-color: #ffffff;
		height: 100%;
		
		/*left: 0;
		right: 0;*/
		

}

.wrapper {
	width: 100%;
	height: 100%;
	min-width: 320px;
	position: relative;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	touch-action: manipulation;
}

header {
	height: 30px;
	position: relative;
	margin: 20px auto;
}

.header {
	display: inline-block;
	float: right;
	margin-right: 20px;
	height: 100%;
	position: relative;
}

.header a {
	position: absolute;
	right: 0;
	top: 10%;
	bottom: 10%;
	height: 26px;
	width: auto;
	
	
}

.header a>svg {
	width: auto;
	height: 100%;
	
}

.header h1 {
	margin: 0;
	padding: 0;
	font: bold 24px "Courier New", Courier, mono;
	/*background: -webkit-linear-gradient(45deg, #FC466B 0%, #3F5EFB 100%);*/
	/*background: -webkit-linear-gradient(45deg, #1CB5E0 0%, #000851 100%);*/
/*	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;*/
	color: #fff;
	position: absolute;
	top: 0%;
	bottom: 0%;
	right: 0;
	z-index: -1;
	
}

div.app-container {
	height: auto;
	/*height: calc(100% - 120px);*/
	
}

#soundOn {
	position: fixed;
	top: -15vh;
	width: 100%;
	height: auto;
	margin: auto;
	z-index: 1;
	text-align: center;
	pointer-events: none;
	transition: transform 0.3s ease-in-out 0s;
}

#soundOn.reminder {
	transform: translateY(15vh);
	
}

#soundOn p {
	display: inline-block;
	border-radius: 30px;
	padding: 5px 20px;
	background-color: lightblue;
	font: 1em/1.5em "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	box-shadow: 0px 0px 7px hsla(195, 90%, 60%, .5);
}

#soundOn img {
	height: auto;
	width: 20px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top: -2px;
	margin-left: 0.2em;
}



div.app-grid {
	width: 100%;
	height: auto;
	position: relative;
	margin: auto;
	/*left: 0;
	right: 0;*/
	overflow: hidden;
	touch-action: manipulation;
	white-space: nowrap;
}

div.app-grid>div {
	overflow: hidden;
}

div.app-grid>div:nth-child(even) {
	height: auto;
}

	div.app-grid>div:nth-child(even).size-small {
		margin-left: 15px;
	}
	
	div.app-grid>div:nth-child(even).size-normal {
		margin-left: 25px;
	}
	
	div.app-grid>div:nth-child(even).size-large {
		margin-left: 40px;
	}
	

div.app-grid>div:nth-child(odd) {
	height: auto;
}

	div.app-grid>div:nth-child(odd).size-small {
		margin-right: 15px;
	}
	
	div.app-grid>div:nth-child(odd).size-normal {
		margin-right: 25px;
	}
	
	div.app-grid>div:nth-child(odd).size-large {
		margin-right: 40px;
	}



.app-grid button {
	appearance: none;
	-webkit-appearance: none;
	/*background: url(../images/cat-clean.png) no-repeat;*/
	background-size: contain;
	/*border-radius: 50%;*/
	margin: 0;
	border-style: none;
	position: relative;
	padding: 10px;
	
}

	button.size-small {
		width: 30px;
		height: 30px;
	}
	
	button.size-normal {
		width: 50px;
		height: 50px;
		
	}
	
	button.size-large {
		width: 80px;
		height: 80px;
	}

/*.app-grid button::after {
	position: absolute;
	content: "";
	inset: 0;
	width: 100%;
	height: 100%;
	
	
}*/


.control-container {
	width: 100%;
	height: 100%;
	
	text-align: left;
	padding-left: 20px;
	box-sizing: border-box;
	font: small-caps bold 1em/1.5em "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

.control-container button {
	-webkit-appearance: none;
	appearance: none;
	border: none;
	cursor: pointer;
	
}

.control-container button:active {
	box-shadow: none;
}

#character_select {
	
	display: inline-block;
	margin: 0;
	padding: 0 10px;
	border-radius: 10px;
	width: auto;
	height: 100%;
	background: none #7043f0;
	font: inherit;
	color: #ffffff;
	box-shadow: 0 2px 7px hsla(254, 85%, 60%, 0.5);
}

#character_select:active {
	box-shadow: none;
}

ul, li {
	list-style: none;
}

#character_list {
	display: none;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	width: 100%;
	margin: 0;
	top: 50px;
	padding: 30px;
	background-color: #1a1a1a;
	z-index: 10;
	text-align: left;
	box-shadow: 0px 7px 15px #444;
}

#character_list li {
	display: inline-block;
	border: 1px solid hsl(0, 0%, 10%);
	padding: 10px;
	border-top: 1px solid #1a1a1a;
	border-bottom: 1px solid #1a1a1a;
	box-sizing: border-box;
}

#character_list li:hover {
	
	border-color: #7043f0;
	cursor: pointer;
}

#character_list img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	object-position: 0%;
}




input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

#reset {
	/*-webkit-appearance: none;
	appearance: none;*/
	/*display: inline-block;*/
	display: none;
	margin: 0;
	padding: 0 10px;
	border-radius: 10px;
	width: auto;
	height: 30px;
	background: none;
	font: inherit;
	font-weight: normal;
	color: #131313;
}


.bubble-size {
	
	width: 75px;
	height: 100%;
	display: inline-block;
	/*background-color: #e6ebea;*/
	background-color: #f5f5f5;
	text-align: left;
	border-radius: 10px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	position: relative;
	font: inherit;
	box-shadow: 0 2px 7px hsla(0, 0%, 65%, 0.5);
}


.display-bubble-size {
	margin: 0;
	padding: 0;
	font: inherit;
	height: 100%;
	width: 100%;
	/*background-color: #f5f5f5;*/
	color: #131313;
	display: inline-block;
	border-radius: 7px;
	padding: 0 10px;
	text-align: left;
	box-sizing: border-box;
	/*box-shadow: 2px 0px 5px #444;*/
	display: inline;
	
}

#counter {
	margin-top: 0px;
	font: small-caps bold 1em/1.7 "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	color: #707070;
	height: 20px;
	/*background-color: orange;*/
}

footer {
	margin: 0;
	padding: 0;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50px;
	text-align: center;
	/*font: 400 0.75em Bozon, Arial, Helvetica, Geneva, sans-serif;*/
	font: 0.75em "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	z-index: -1;
}

footer a {
	text-decoration: none;
	padding-left: 0px;
	/*transition: padding-left 0.1s ease-in-out 0s;*/
	color: #1a1a1a;	
}

footer a:hover {
	color: #383838;
	/*padding-left: 2px;*/
	transform:translate(10px);
}

footer .logo {
	font-weight: 900;
	
}


