.SearchForm {
	width:550px;
	margin: 0 auto;
	font-family: Tahoma, Arial, "MS Trebuchet", sans-serif;
	text-align: center;
	padding:20px 0px 22px 0px;
	transform: translate(0px, -30px);
	transition: transform .3s ease-out, opacity .5s ease-in;
	opacity: 0;
	
}

.OpacityReset {
	opacity: 1;
}

.Separator {
	margin: auto;
	height: 1px;
	width: 100%;
	margin-bottom: 6px;
	background-color: rgba(255,255,255,0.1);
	box-shadow: 0px -1px 0px rgba(0,0,0,0.3);
}

.SearchbarInput {
	width: 428px;
	border-top-left-radius:		16px;
	border-bottom-left-radius:	16px;
	margin: 0px;
	background-color: rgba(0,0,0,0.3);
	border-top: 1px solid rgba(255,255,255,0.2);
	border-bottom: 1px solid rgba(255,255,255,0.2);
	border-left: 1px solid rgba(255,255,255,0.2);
	border-right: 0px;
	color:#fff;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	padding: 7px;
	padding-left: 12px;

}

.SearchbarInput:focus {
	border: 1px #09afff solid;
	border-right: 0;
	box-shadow:0px 0px 5px #09afff;
}

.SearchbarButton {
	height:34px;
	width: 40px;
	border-top-right-radius: 16px;
	border-bottom-right-radius: 16px;
	border-top: 1px solid rgba(255,255,255,0.2);
	border-bottom: 1px solid rgba(255,255,255,0.2);
	border-left: 0;
	border-right: 1px solid rgba(255,255,255,0.2);
	vertical-align: bottom;
	background-color: rgba(0,0,0,0.3);
	color:#fff;
	padding-bottom:0px;
	background-image: url("search-icon.png");
	background-repeat: no-repeat;
	background-position: 9px;
	background-size: 18px;
}

.SearchbarButton:hover {
	background-color: rgba(0,153,255,0.8);
}

.SearchbarButton:active{
	background-color :#444;
}

table td{
	/* Spacing between apps */
	padding:25px;
}

#apptable {

}

.App {
	position: relative;
	width: 128px;
	height: 160px;
	/*display:none;*/
    transition: opacity .3s ease-in;
    -moz-transition: opacity .3s ease-in;
    -webkit-transition: opacity .3s ease-in;
	opacity: 0;
}

.App-fadeIn {
	opacity: 1;
}

.AppIcon {
	position: relative;
	width: 128px;
	height: 128px;
	/* Roundness of the icons here */
	border-radius: 20px;
	box-shadow: 0px 1px 2px rgba(0,0,0,0.8);
	cursor: pointer;
}

.AppIcon:hover {
	/* Prevent multiple scalings caused by inherited transform from AppIconCover */
	transform: scale(1.055);
	-webkit-transform: scale(1.055);
}

.AppIcon img {
	height: inherit;
	width: inherit;
	border-radius: inherit;	
}

.gloss {
    position: absolute;
    top: 0;
    left: 0;
	border-radius: inherit;
	width: inherit;
	height: inherit;
    box-shadow: 0px 0px 1px 0px #FFF inset;
	background: linear-gradient(-5deg, rgba(255, 255, 255, 0)79%, rgba(255, 255, 255, 0.2) 80%, rgba(255, 255, 255, 0.3)100%);
}

.App .label {
	/* Prevent text selection */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: default;

	position: relative;
	width: 124px;
	margin-top: 8px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 3px;
	padding-bottom: 3px;
	line-height: 18px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11pt;
	text-align: center;
	vertical-align: middle;
	color: white;
	
	/* Label background roundness */
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.2);	
	background-color: rgba(0,0,0,0.3);
}

body {
	margin: 0;
	background: url(noise-texture.png);
    background-repeat: repeat;
    background-color: rgba(0,0,0,0.7);
}