@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,800');
html {
	box-sizing: border-box;
	height: 100%;
	font-size: 16px;
}

body {
	height: 100%;
	font-family: 'Open Sans', sans-serif;
	font-size: 100%;
	color: #21292B;
}

*,
*:before,
*:after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}

option {
	padding: 1px 5px;
	font-weight: 300;
	display: block;
	background-color: #f7fbfc;
	outline: none;
	outline: 0;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	color: #222222;
	text-shadow: none;
	font-size: 100%;
}

select {
	font-size: 100%;
	padding: 12px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	/*	transition: all 200ms ease;*/
	margin-left: -1px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	border: 1px solid #999999;
	box-shadow: inset 0 0 3px 1px rgba(255, 255, 255, 0.2), inset 0 40px 35px -40px rgba(255, 255, 255, 0.2), inset 0 22px 10px 0 rgba(255, 255, 255, 0.2);
}

select:hover {
	cursor: pointer;
	/*	transition: all 200ms ease;*/
	background: #83d2e5;
	color: #203338;
	border: 1px solid #66a3b3;
}

h1 {
	font-size: 200%;
	font-weight: 800;
	color: #203338;
}

.container {
	height: 100%;
	position: relative;
	width: 85%;
	margin: auto;
}

#topmenu {
	padding-top: 75px;
	padding-bottom: 85px;
	font-size: 100%;
	width: 100%;
}

.left {
	width: 49%;
	text-align: left;
	display: inline-block;
}

.right {
	width: 50%;
	text-align: right;
	display: inline-block;
}

#dataarea {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-bottom: 220px;
}

.squares {
	text-align: center;
	padding: 10px;
	width: 10%;
	background: #83d2e5;
	outline: 1px solid #66a3b3;
	outline-offset: 0px;
	hyphens: auto;
	/*	transition: all 200ms ease;*/
	box-shadow: inset 0 0 3px 1px rgba(255, 255, 255, 0.1), inset 0 40px 35px -40px rgba(255, 255, 255, 0.1), inset 0 22px 10px 0 rgba(255, 255, 255, 0.1);
	text-shadow: 0 1px 0 #ddf8ff;
}

.squares:hover {
	cursor: cell;
	background: #ffe345;
	outline: 1px solid #E2A13F;
	box-shadow: inset 0 0 3px 1px #FFFFFF, inset 0 40px 35px -40px #FAFAFA, inset 0 22px 10px 0 rgba(255, 255, 255, 0.4), inset 0 20px 32px -20px #f3b5ff;
	/*	transition: all 100ms ease;*/
	text-shadow: 0 1px 0 #f7d29b;
}

.ui-selected {
	background: #f1d958;
	outline: 1px solid #E2A13F;
	/*	transition: all 400ms ease;*/
	text-shadow: 0 1px 0 #f7d29b;
	box-shadow: inset 0 0 3px 1px rgba(255, 255, 255, 0.1), inset 0 40px 35px -40px rgba(255, 255, 255, 0.1), inset 0 22px 10px 0 rgba(255, 255, 255, 0.1);
}

.ui-selecting {
	background: #f1d958;
	outline: 1px solid #E2A13F;
	/*	transition: all 200ms ease;*/
	text-shadow: 0 1px 0 #f7d29b;
	box-shadow: inset 0 0 3px 1px rgba(255, 255, 255, 0.1), inset 0 40px 35px -40px rgba(255, 255, 255, 0.1), inset 0 22px 10px 0 rgba(255, 255, 255, 0.1);
}

.name {
	font-size: 80%;
	font-weight: 400;
	display: block;
	color: #203338;
	text-shadow: none !important;
}

.code {
	font-size: 140%;
	font-weight: 800;
	display: block;
}

#selects {
	font-size: 100%;
	font-weight: 400;
	padding: 35px;
	position: fixed;
	bottom: 0;
	width: 100%;
	display: none;
	background-color: #83d2e5;
	border-top: 1px solid #66a3b3;
	box-shadow: inset 0 0 3px 1px rgba(255, 255, 255, 0.1), inset 0 40px 35px -40px rgba(255, 255, 255, 0.1), inset 0 22px 10px 0 rgba(255, 255, 255, 0.1);
}

@media (max-width: 1200px) {
	.squares {
		width: 20%;
	}
}

@media (max-width: 600px) {
	.squares {
		width: 25%;
	}
	.container {
		width: 100%;
	}
	.left,
	.right {
		width: 100%;
		text-align: center;
		padding-bottom: 22px;
	}
}