#loader {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: white;
	border: none;
	color: #A0A0A0;
	z-index: 10;
	font-family: inherit;
	font-size: 18px;
}

#searchBar, #extraBar, #searchButton, .logo, .categories, #categoriesOverlay {
	height: 35px;
}

#searchBar, #extraBar, #searchButton, .categories, #categoriesOverlay {
	font-size: 13px;
	top: calc(50% - 17.5px);
}

#searchBar, #extraBar {
	position: absolute;
	width: 550px;
	border-style: solid;
	border-width: 1px;
	padding: 0px;
	padding-left: 7px;
	color: black;
}

#extraBar {
	display: none;
}

#searchButton {
	position: absolute;
	left: calc(50% + 285px);
	width: 80px;
	cursor: pointer;
}

#searchButton:hover, #alertDiv input[type='button']:hover {
	text-shadow: 0px 1px rgba(0, 0, 0, 0.2);
}

#searchButton:active, #alertDiv input[type='button']:active {
	-webkit-box-shadow: inset 0px 2px 1px rgba(0, 0, 0, 0.1);
	border-color: rgba(0, 0, 0, 0.3);
	border-bottom-color: rgba(0, 0, 0, 0.4);
}

.logo {
	position: absolute;
	right: calc(50% + 285px);
	opacity: 0.5;
	cursor: pointer;
	-webkit-transition: 0s;
	z-index: 1;
	-webkit-user-select: none;
	-webkit-user-drag: none;
}

.logo[data-current='true'] {
	opacity: 1;
	-webkit-transition: 0.15s;
	z-index: 0;
}

.logo:hover {
	opacity: 1;
}

.categories, #categoriesOverlay {
	display: none;
	position: absolute;
	margin: 0px;
	width: 150px;
	padding: 0px 16px;
	border-radius: 0px;
	text-align: left;
	z-index: 0;
}

#categoriesOverlay div {
	display: block;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.categories {
	z-index: 1;
	opacity: 0;
}

#canvas {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: -10;
}

#alertDiv {
	display: none;
	position: absolute;
	top: calc(50% - 131px);
	left: calc(50% - 240px);
	width: 448px;
	height: 200px;
	background: white;
	border: solid 1px rgba(0, 0, 0, 0.2);
	font-family: inherit;
	padding: 30px;
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
}

#alertDiv h1 {
	padding: 0px;
	margin: -5px 0px 20px 0px;
	font-weight: bold;
	font-size: 32px;
	height: 32px;
	letter-spacing: -1px;
}

input[type='checkbox'] {
	margin: 0px;
	width: 14px;
	height: 14px;
	background: white;
	box-shadow: none;
	border: solid 1px rgba(0, 0, 0, 0.2);
}

#alertDiv input[type='checkbox'] {
	position: absolute;
	bottom: 75px;
	left: 30px;
}

input[type='checkbox']:hover {
	box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1) inset;
}

input[type='checkbox']:checked:before {
	position: relative;
	margin-left: 0.5px;
	top: -8px;
	content: "\2713";
	color: black;
	font-size: 19px;
}

input[type='checkbox']:disabled+label {
	color: rgba(0, 0, 0, 0.2);
}

input[type='checkbox']:disabled {
	margin: 0px;
	width: 14px;
	height: 14px;
	background: white;
	box-shadow: none;
	border: solid 1px rgba(0, 0, 0, 0.1);
}

label {
	-webkit-user-select: none;
}

#alertDiv label {
	position: absolute;
	bottom: 74px;
	left: 50px;
	margin: 0px;
	font-size: 11.5px;
}

#alertDiv input[type='button'] {
	font-family: inherit;
	font-size: 13px;
	-webkit-appearance: none;
	margin: 0px;
	position: absolute;
	bottom: 30px;
	left: 30px;
	padding: 7px 20px;
	background-color: #4D90FE;
	background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.07));
	border: solid 1px rgba(0, 0, 0, 0.2);
	border-bottom-color: rgba(0, 0, 0, 0.3);
	color: white;
	font-weight: bold;
	letter-spacing: -1px;
	cursor: pointer;
}

#alertDiv input[type='button']:hover {
	background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0));
}

#nightCheck {
	display: block;
	position: absolute;
	bottom: 30px;
	left: 30px;
}

#nightCheck:before {
	color: white;
}

#nightCheck:checked+label {
	color: white;
}

#nightCheck:checked {
	border: solid 1px rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.2);
}

#nightCheck:checked:hover {
	background: rgba(255, 255, 255, 0.3);
}

label[for="nightCheck"] {
	display: block;
	position: absolute;
	bottom: 28.5px;
	left: 50px;
	font-family: inherit;
	font-size: 13px;
}