/****************************************************************/
/* 
/****************************************************************/*
{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.event {
    border-radius:4px;
    color:#FFFFFF;
    font-size:12px;
    margin:0px 30px;
    padding:2px 0px;
}

.event.listening {
    background-color:#333333;
    display:block;
}

.event.received {
    background-color:#4B946A;
    display:none;
}

#deviceready.ready .event.listening { display: none; }
#deviceready.ready .event.received { display: block; }

@keyframes fade {
    from { opacity: 1.0; }
    50% { opacity: 0.4; }
    to { opacity: 1.0; }
}
input::file-selector-button {
	color: black;
	background-color: lightsteelblue;
	margin: auto;
	text-align: center;
	border: none;
	height: 44px;
	width: 100px;
	font-weight: bold;
	font-size: 14px;
}
.blink {
    animation:fade 3000ms infinite;
    -webkit-animation:fade 3000ms infinite;
}
/****************************************************************/
/* 
/****************************************************************/
body {
	overflow: hidden;
	display: grid;
	grid-template-rows: 10vh 78vh 12vh;
	background-color: #003300;
	width: 100%;
	margin: 0;
}
@media screen and (max-width: 480px) {
	body {
		grid-template-rows: auto 62vh auto;
	}
}
/****************************************************************/
/* 
/****************************************************************/
header {
	border: none;
	background-color: red;
}
/****************************************************************/
/* 
/****************************************************************/
#main {
	overflow: hidden;
	border: groove;
	border-color: gold;
	border-width: 4px;
	text-align: center;
}
#appstatus {
	padding: 12px;
}
#cttTitle { 
	text-align: center;
	line-height: 0;
}
#statusBar {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 8px;
	padding-left: 20px;
	padding-right: 20px;
	text-align: center;
}
.cttbar {
	height: 4px;
	width: 100%;
	border: none;
	background-color: white;
}
#ctt {
	display: block;
	border: none;
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}
/****************************************************************/
/* 
/****************************************************************/
footer {
	border: none;
	background-color: #003300;
}
#ctrlgrp {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: auto;
	padding: 8px;
}
.cttCtrl {
	height: 44px;
	width: 100px;
	background-color: dimgray;
	border: outset;
	border-radius: 8px;
	cursor: pointer;
	box-shadow: 0 0 2px black;
	color: black;
	font-size: 14px;
	font-weight: bold;
	margin: auto;
}
#copyRight {
	color: black;
	background-color: silver;
	font-size: 12px;
	margin: auto;
	text-align: center;
}
