*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  margin: 0;
}

body {
	margin: 4.8rem 0 0 0;
}

.topPanel {
	position: fixed;
	top: 0;
	width: calc(100% - 8px - 8px);
	height: 2.8rem;
	overflow: hidden;
	margin: 0.5vw 8px 2vw 8px;
  border: 2px solid red;
  border-radius: 8px;
  box-shadow: 2px 2px 4px darkred;
	background: #6060ff;
  font-family: 'Chewy', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
	color: white;
	text-stroke: 1px red;
	-webkit-text-stroke: 0.25px red;
}
.topPanel2 {
	position: fixed;
	top: 3.0rem;
	margin: 0.5vw 8px 2vw 8px;
}

input {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.2rem;
  font-weight: bold;
  color:red;
  background: #fff8f8;
  box-shadow: 1px 1px 2px;
}
input.bigCheckBox {
    width: 1.0rem;
    height: 1.0rem;
}

button {
	margin: 2px 0 0 2px;
  background: #a0e0a0;
  color: #404040;
  border: 1px solid #888;
  border-radius: 8px;
  box-shadow: 1px 1px 2px;
  font-family: 'Roboto Mono', monospace;
  font-size: 1.0rem;
  font-weight: bold;
}
button:hover {
  background: #a0ffa0;
}
button:disabled,
button[disabled] {
	background: #e0a0a0
}

select {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.8rem;
  font-weight: bold;
  background: #fff8f8;
}
label {
  font-size: 1.0rem;
}

.bigButton {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.5rem;
  font-weight: bold;
  color: #404040;
  background: #80d080;
  border: 1px solid black;
  border-radius: 8px;
  box-shadow: 1px 1px 2px;
}
.bigButton:hover {
  background: #80ff80;
}
.bigButton:disabled,
.bigButton[disabled] {
	background: #d08080
}

.title {
  padding: 4px;
  border-bottom: 1px solid #888;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
	background-color: #ffd;
}
div.top-title {
  font-family: 'Chewy', sans-serif;
  font-size: 2.0rem;
  font-weight: 800;
  text-align: center;
}
.shadowed {
  border: 1px solid #888;
  border-radius: 8px;
  box-shadow: 2px 2px 4px #842;
}
div.shadowedFlag {
  border: 2px solid red;
  border-radius: 8px;
  box-shadow: 2px 2px 4px darkred;
	background: #6060ff;
	color: white;
	text-stroke: 1px red;
	-webkit-text-stroke: 0.25px red;
}

.box {
	display: inline-block;
	vertical-align: top;
	width: fit-content;
	min-width: 20%;
	max-width: 100%;
  float: left;
  margin: 0.5vw;
  margin-top: 3.0vw;
  overflow: hidden;
}
.box_header {
	padding: 2px 8px 2px 8px;
	background-color: #a9dbde;
  border-bottom: 1px solid #888;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
.box_content {
	display: block;
  margin-top: 6px;
	padding: 8px;
}

.zebraStripe:nth-child(odd) {
	background-color: #e0f0ff;
}

.headingTextMono {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.0rem;
  font-weight: regular;
  color: #444;
}
.headingText {
  font-family: 'Roboto Condensed', monospace;
  font-size: 1.2rem;
  font-weight: bold;
}
.messageTextMono {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.0rem;
  font-weight: regular;
  color: #444;
}
.messageText {
  font-family: 'Roboto Condensed', monospace;
  font-size: 0.9rem;
  font-weight: bold;
}

.voteQuestion {
  font-family: 'Roboto Condensed', monospace;
  font-size: 1.2rem;
  font-weight: bold;
  color: darkblue;
}
.voteCount {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.2rem;
  font-weight: bold;
}
.voteAnswer {
  font-family: 'Roboto Condensed', monospace;
  font-size: 1.2rem;
  font-weight: normal;
  color: darkblue;
}
.voteQuery {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.2rem;
  font-weight: normal;
  color: darkred;
}
