/* General */
html, body {
	width: 100%;
	height: 100%;
	min-width: 900px;
	min-height: 800px;
	background: #333333;
	margin: 0px;
}


/* Grids */
[class*="col-"] {float: left;}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}


/* Body */
.header {
	height: 4%;
	min-height: 35px;
	background: #333333;
	border-bottom: 3px solid #e6e6e6;
}
.section {
	display: flex;
	height: 92%;
	min-height: 700px;
}
.footer {
	height: 3%;
	min-height: 5px;
	background: #333333;
	border-top: 3px solid #e6e6e6;
	text-align: center;
}


/* Section */
.main {
	order: 1;
	height: 100%;
	min-width: 1100px;
	min-height: 700px;
	background: #ffffff;
}
.resources {
	order: 6;
	height: 100%;
	min-width: 250px;
	min-height: 700px;
	background: #fafafa;
}


/* Main */
.search {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 10%;
	min-height: 70px;
	border-bottom: 3px dashed #fafafa;
}
.home {
	width: 100%;
	height: 90%;
	min-width: 1000px;
	min-height: 630px;
	padding-top: 25px;
	text-align: center;
}


/* Buttons */
.header-list button, .footer-list button {
	background: #333333;
	outline: none;
	border: none;
	border: 1px dashed transparent;
	margin: 3px 0px 3px 0px;
	padding: 6px 0px 6px 0px;
	color: #cccccc;
	font-family: Ubuntu;
	font-size: 1em;
	transition: 0.5s;
	cursor: pointer;
}
.header-list button:hover, .footer-list button:hover {
	background: #1a1a1a;
	border: 1px dashed #999999;
	border-radius: 5px;
	color: #ffffff;
	text-shadow: 0px 0px 20px #ffffff;
}
.version {margin-top: 10px;}


/* Password */
#myInput {
	margin: 0px;
	width: 100%;
	margin: 0px;
	padding: 0px;
	outline: none;
	background: #333333;
	border: none;
	color: #cccccc;
	font-family: Ubuntu;
	font-size: 1em;
	text-align: center;
	transition: 0.5s;
	cursor: pointer;
}
#myInput:hover {
	background: #1a1a1a;
	color: #ffffff;
}
.tooltip {display: block;}
.tooltip .tooltiptext {
	visibility: hidden;
	position: absolute;
	top: 40px;
	left: 0px;
	width: 100%;
	padding: 30px 0px 30px 0px;
	background: #333333;
	border: none;
	color: #ffffff;
	font-family: Ubuntu;
	font-size: 1.25em;
	opacity: 0;
	transition: ease 0.25s;
	 transition-delay: 0.25s;
}
.tooltip:hover .tooltiptext {visibility: visible; opacity: 0.75;}
.tooltip .tooltiptext::after {content: "";}


/* Accounts */
#snapshot {
	display: none;
	position: fixed;
	background: #ffffff;
	border: 1px solid #333333;
	border-radius: 10px;
	box-shadow: 0px 5px 20px #999999;
	margin: 20px;
	padding: 20px;
	z-index: 1;
}