/* Global Styles */
body {
	padding:0;
	margin:0;
	/*background-color: #018080; True windows 95 color*/
	background-image: url('images/vv-bg.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	color:#000;
	font-family: 'Press Start 2P';
	font-size:8px;
	position: relative;
}

p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 13px;
}


a, a:hover, a:visited {
	color:#000;
	text-decoration: none;
	cursor: pointer;
}

/* Utils */
*.hidden {
	display: none !important;
}

*.color-pink {
	color:#F00BAA !important; 
}

*.color-green {
	color:#018080 !important;
}

*.color-purple {
	color:#b83af4 !important;
}

/* Button */
body button {
	display: inline-block;
    background: #c0c0c0;
    border: outset 2px;
	position: relative;
	padding: 5px;
}

body button:hover {
	cursor: pointer;
	background:#D0D0D0;
	outline: none;
}

body button.close-btn {
	padding:2px 6px 4px 6px;
	margin:0;
	
}
/* Navigation*/
nav {
	position: fixed;
	bottom:0;
	left:0;
	right:0;
	width:100%;
	background:#CCC;
	z-index: 666;
}

nav i {
	font-size:150%;
	vertical-align: middle;
}

nav button,
nav a {
	color:#000;
	padding:0.875rem;
	outline: none;
}

nav button {
	font-family: 'Press Start 2P';
	font-size:125%;
	vertical-align: middle;
	width:204px;
	padding:12px;
	margin-top:1px;
}

nav button span {
	display: inline-block;
    margin-top: 3px;
}

nav button i {
	vertical-align: top;
}

/* Nav Tray (Right hand side) */
#nav-tray {
	padding-right: 0.75rem;
}

#nav-tray a {
	float:right;
	padding:0.75rem;
	font-size:150%;
	color:#666;
}

#nav-tray a:hover {
	cursor: pointer;
	color:#000;
}

#nav-tray a#clock {
	color:#000;
	border: inset 2px;
	font-size:100%;
	padding:1rem;
	display:none;
}

@media screen and (min-width: 768px) { 
	#nav-tray {
		padding-right: 0;
	}
	#nav-tray a#clock {
		display: inline-block;
		margin-left: 0.75rem;
	}
}

nav .menu {
	width: 200px;
    position: absolute;
    top: -272px;
    left: 0px;
    background: #DDD;
	list-style: none;
	border:2px solid #CCC;
	border-bottom:none;
}

nav .menu div,
nav .menu a  {
	display:block;
	padding:1rem;
	margin:0;
	text-align: left;
	border-bottom:1px solid #BBB;
}

nav .menu a:hover,
nav .menu div:hover  {
	cursor: pointer;
	background:#D0D0D0;
}


/* Col / Row */

.row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}

.column {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
	flex: 1;
}

/* Window */
.window {
	border:3px solid #c2bfc0;
	left:0;
	right:0;
	top:0;
    max-height: 92vh;
	background:#c2bfc0;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	z-index: 2;
	position: fixed;
}

@media screen and (min-width: 768px) { 
	.window {
		width:500px;
	}
}

.window.active {
	z-index:10;
}

.window-top-bar{
	background:#80807f;
	color:#bebebe;
	font-size:8px;
	position: relative;
	cursor: move;
}

.window-top-bar button {
	position: absolute;
    right: 3px;
	top: 3px;
}

.active .window-top-bar {
	background: #0e2097;
	color:#FFF;
}

.window-footer{
	background:#c0c0c0;
	width:100%;
}

.window-footer td {
	padding:5px;
	font-size: 6px;
	width:69%;
	border: inset 2px;
	color:#999;
}

.window-top-bar span {
	display: block;
	padding:0.66rem;
}

.window-frame{
	border: inset 2px;
    background: #fff;
    margin: 5px;
    height: 500px;
    padding: 2px;
	overflow-y: auto;
	overflow-x: hidden;
}

.window-iframe {
	width:100%;
	height: 450px;
	
}

#desktop-icons {
	position: absolute;
	bottom:5rem;
	left:0rem;
	right:0rem;
}

/*Desktop Icon */
.desktop-icon {
	padding:1.5rem;
	text-align: center;
	color:#FFF;

}

.desktop-icon * {
	color:#FFF;
	display: block;
	text-shadow: 1px 1px rgba(0,0,0,0.75)
}

.desktop-icon i {
	margin-bottom:1rem;
}

.desktop-icon:hover {
	cursor: pointer;
}

/* Loading */
#loading {
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom: 0;
	background: #6e768a url('images/clouds.gif') no-repeat center ;
	background-size: cover;
	color:#FFF;
	padding:20vh 5rem;
	text-align: center;
	z-index: 9999999;
}

#loading h1 {
	font-size: 2rem;
	line-height: 3.5rem;
}

#loading p {
	padding-bottom:1rem;
	font-family: 'Press Start 2P';
	font-size: 10px;
}

#loading button {
	padding:1rem;
	font-family: 'Press Start 2P';
	font-size: 10px;
}
