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

/* Google Colors
* Gray #75787B
* Blue #4285F4
* Red #DB4437
* Yellow #F4B400
* Green #0F9D58
* Purple (extra) #A479E2
*/

/*************************************** 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
}



/**************************************** HEAD ****************************************/

#app-header {
	margin-bottom: 1px;
}

/*#main-user-menu {
	border-top: solid 1px #CBCBCB;
}*/


.app {
	/*width: 100%;*/
	height: 150px;
	/*float: left;*/
	background-color: white;
	background-size: cover;
	background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    color: white;
    padding: 0;
    text-align: center;
}

.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: 10px;
    left: 0;
    top: 0;
	width: 100%;
	height: 100%;
	color: white;
	background-color: rgba(0,0,0, 0.5);
/*    opacity: 0.6;*/
    text-shadow: 1px 1px 5px #CBCBCB;
	text-align: center;
/*    display: none;*/
}


.portal-no-apps{
	position: fixed;
	bottom: 0;
	top: 0;
	left: 0;
	z-index: 1;
	display: none;
	width: 100%;
	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;
	}
}
