html {
	height: 100%;
}

body {
	
	font-family: proxima-nova,sans-serif;
font-weight: 400;
font-style: normal;
	text-align: center;
	height: 100%;
}

.bg {
	position: fixed;
	top: 0px;
	left: 0px;
	background-image: url("../gfx/Background.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	height: 100vh;
}

.container {
	font-size: 1.2em;
	padding: 1em;
	padding-bottom: calc(50px + 1em);
}

#messageBox {
	height: 100px;
}

.column img {
	cursor: pointer;
}

.input, .textarea {
	background-color: rgba(255, 255, 255, 0.7);
	
	font-family: proxima-nova,sans-serif;
	font-weight: 400;
	font-style: normal;
}

.button[disabled] {
	background-color: rgba(255, 255, 255, 0.3);
}

.input:active, .textarea:active {
	border-color: rgba(2,62,89,0.7);
	box-shadow: 0 0 0 .125em rgba(2,62,89,0.25);
}

/* MAIN CONTAINER FOR HEADER CONTENT */
.header {
  position: relative;
  background-color: rgba(2,62,89,0.7);
	text-align: center;
	font-family: omnes-pro,sans-serif;
font-weight: 400;
font-style: normal;
	font-size: 2em;
	color: #FFFFFF;
	padding: 1em;
}

.is-dynamic {
	
	font-family: proxima-nova,sans-serif;
font-weight: 400;
font-style: normal;
	color: #FFFFFF;
	background-color: rgba(2,62,89, 0.7);
	border: 1px solid #FFFFFF;
	
}

/* POWERED BY BLYNK BRANDED FOOTER */
.blynkFooter {
	position: fixed;
	bottom: 0px;
	width: 100%;
  background: #373A36;
  height: 50px;
  text-align: right;
  padding-top: 5px;
  padding-right: 5px;
}

#messageTable td {
	text-align: left;
	vertical-align: middle;
}

.iconYes, .iconNo, .iconRestore, .iconRemove {
	cursor: pointer;
	font-size: 2em;
	opacity: 0.3;
}

.iconYes.is-active, .iconRestore.is-active {
	color: green;
	opacity: 1;
}

.iconNo.is-active, .iconRemove.is-active {
	color: crimson;
	opacity: 1;
}