/*
*	(C) Copyright 2015 Focus BC - http://www.focus-bc.com/.
*
*   portal.css
*	Summary: Stylesheet for desktop browsers
*/

/*************************************** MAIN ********************************************/

html, body {
	margin: 0;
	padding: 0;
	width:100%;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	/*overflow-x: hidden;*/

	-webkit-text-size-adjust: 100%;

	/* Make elements unselectable, because the onclick on TD and other events */
	/*-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;*/
}

.icon-bar{
	background-color: black;
}


/************************************ SPLASHSCREEN ************************************/

#splashscreen {
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 1000;
	background-color: black
}

/**************************************** CARDS ***************************************/

.app {
    display: none;
	height: 300px;
	background-color: white;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
    cursor: pointer;
    color: white;
    text-align: center;

	padding-left: 0 !important;
	padding-right: 0 !important;
}

.app-name{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
	background-color: black;
	text-shadow: 1px 1px 5px #CBCBCB;
	font-size: 12px;
	opacity: 0.75;
	color: white;
	text-align: center;
}

/*.app:hover {
    font-size: 0;
}*/

/*.app-mask {
    font-size: 0;
    left: 0;
    top: 0;
	width: 100%;
	height: 100%;
	background-color: black;
    opacity: 0.2;
    text-shadow: 1px 1px 5px #CBCBCB;
}*/

/*.app-mask:hover {
    font-size: 12px;
    opacity: 0.75;
    color: white;
    text-align: center;
}*/


.portal-no-apps{
	position: fixed;
	bottom: 0;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	display: none;
	height: 100%;
}

.portal-no-apps table{
	width: 100%;
	height: 100%;
}

.portal-no-apps table tr td{
	vertical-align: middle;
	padding-top: 60px;
	text-align: center;
	color: #a0a0a0;
}
.portal-no-apps  i{
	font-size: 100px;
}

@media(max-width: 800px){
/*@media(max-width: 1024px){*/
	html, body{
		-moz-user-select: -moz-none;
		-khtml-user-select: none;
		-webkit-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
}
