/*Text*/

body {
	font-family: "Quicksand";
	font-size: 18px;
	text-align: center;
}

.page {
	display: flex;
	flex-wrap: wrap;
}

.section {
	width: 100%;
	/*height: 300px;*/
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 2em;
}


.header {
	font-family: "Bungee Shade";
	color: red;
	font-size: 40px;
	padding-top: 5px;
	padding-bottom: 0.4em;
}

.table {
	padding-bottom: 2em;
	margin-left: auto;
 	margin-right: auto
}

.select {
	padding-bottom: 2em;
	margin-left: auto;
 	margin-right: auto
}

.button {
	margin-top: -1em;
}

.footer {
	font-family: "Quicksand";
	font-size: 15px;
	font-weight: lighter;
	text-align: left;
	line-height: 1.6em;
	color: lightpink;
}

.subheader {
	font-family: "Roboto Mono";
	color: rgb(160, 160, 160);
	font-size: 10px;
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
	letter-spacing: 0px;
}

a:link,
a:visited {
	color: red;
	text-decoration: none;
}

a:hover {
	color: #c11111;
	text-decoration: none;
}

/*Decoration*/
hr {
	background-color: #c11111;
	height: 6px;
	width: 10%;
	border: none;
}


/*Forms*/
label,
input {
	font-size: 15px
}

input[type=date] {
	font-family: "Quicksand"
}

input[type=number] {
	font-family: "Quicksand"
}

/*input[type=checkbox] { }*/
input[type=submit] {

	background-color: #ffffff;
	border: 2px solid red;
	color: red;
	font-size: 13px;
	text-align: center;
	cursor: pointer;
}

#sbButton {

	background-color: #ffffff;
	border: 2px solid red;
	color: red;
	font-size: 13px;
	text-align: center;
	cursor: pointer;
	padding: .8em;
}

#sbSelect {
	width: 125px;
}


table.table-list,
td.table-list,
th.table-list {
	text-align: left;
	vertical-align: center;
	padding: 10px;
	table-layout: fixed;
	overflow-x: auto;
}

td.table-list,
th.table-list {
	font-family: "Roboto Mono";
	font-weight: 300;
	font-size: 13px;
}

table.table-list {
	border-collapse: collapse;
	border-style: hidden;
  }

th.table-list, td.table-list {
	border: 1px solid #ddd;
  }


th.table-list {
	background-color: gray;
	color: white;
	font-family: "Roboto Mono";
	font-size: 18px;
}

/* Mobile Styles */
@media only screen and (max-width: 400px) {
	/* body { background-color: #F09A9D; } */

	.header {
		padding-top: 55px;
	}
  }
  
  /* Tablet Styles */
  @media only screen and (min-width: 401px) and (max-width: 960px) {
	/* body { background-color: #F5CF8E;} */
  }
  
  /* Desktop Styles */
  @media only screen and (min-width: 961px) {
	/* body { background-color: #B2D6FF; } */
	.page {
		width: 960px;
		margin: 0 auto;
	  }
  }