#desktopAppIcons{
	display: flex;
	/*flex-direction: column;*/
	flex-wrap: wrap;	
	justify-content: flex-start;
	/*align-items: flex-start;*/
	max-height: calc(100vh - var(--startbar-height));
}


.dekstopIcon{
	position: relative;
	border: none;
	width: 5rem;
	/*min-height: 5rem;*/
	padding: 0.2rem;
	margin: 0.5rem;
	transition-duration: 120ms;
	border-radius: 0.3rem;

	background-color: #0000;
	/*background-color: red;*/
	/**/
	height: 7rem;
	overflow: hidden;
}
.dekstopIcon:focus{
	overflow: visible;
}

.dekstopIcon:hover{
	background-color: #eee4;
}

.dekstopIcon::before{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #eee4;
	border: 2px solid #eee8;
	border-radius: 0.3rem;
	transform: scale(0);
	transform-origin: bottom;
	content: "";
	box-sizing: border-box;
	transition-duration: 300ms;
}
.dekstopIcon:focus::before{
	transform: scale(1);
}

.dekstopIcon:active{
	transition-duration: 60ms;
	background-color: #eee6;
}

.dekstopIcon>h3{
	color: #eee;
	text-shadow: 0 0 #222;
	font-size: 0.8rem;
	/*letter-spacing: 0.05rem;*/
	font-family: sans-serif;
}

.dekstopIcon>img{
	/*width: 5rem;*/
	/*height: 5rem;*/
	width: 80%;
	/*position: absolute;*/
	/*left: 0;*/
	/*top: 0;*/
}