/* init Syles */
.alignleft{float:left;margin-right:20px;}
.alignright{float:right;margin-left:20px;}

/* Deletes Dropdown caret */
.navbar.bootsnav .nav>li>a:after {
	display: none;
}

/* Overrides Navbar negative space at the bottom */
nav.navbar.bootsnav ul.nav > li > a{
	margin-bottom: 0;
}

/* override animate css */
.fadeIn,
.fadeOut{
 animation-duration: .2s;
}

/* Removes Background in the hamburger button */
nav.navbar.bootsnav .navbar-toggle {
	background-color: transparent;
}

/* Genex Signature */
footer #genexSignature div:last-child{
	/*background-color: #000;*/
	background-color: #3e3e3e;
	height: 9px;
}

footer #genexSignature img {
	display: inline-block;
	filter: contrast(.5);
}

footer #genexSignature{
	background-color: rgba(30,30,30,.5);
	padding-top: 15px;
}

footer .subFooter{
	margin-top: 3px;
	margin-bottom: 3px;
	float: left;
	color: #fff;
}


/* Utilty Class */
.dev{
	background-color: red;
	outline: black 2px solid;
}

.hSpacer{
	margin-top: 4rem;
	margin-bottom: 4rem;
}

.bottomSpace{
	margin-bottom: 30px;
}

.gCenter{
	display: grid;
	place-items: center;
}

.flexCenter{
	display: flex;
	justify-content: center;
	align-items: center;
}

.flexVCenter{
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-direction: column;
}


/* Controls Global Border Radius */
.bodyWrapper .btn,
.bodyWrapper input,
.bodyWrapper textarea,
.bodyWrapper .img-thumbnail{
	border-radius: 0;
	border: #ddd solid 1px;
}

.bodyWrapper .btn{
	border: none;
}

/* To Top */
#back-to-top {
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 9999;
	width: 32px;
	height: 32px;
	text-align: center;
	line-height: 30px;
	background: #f5f5f5;
	color: #444;
	cursor: pointer;
	border: 0;
	border-radius: 2px;
	text-decoration: none;
	transition: opacity 0.2s ease-out;
	opacity: 0;
}

#back-to-top:focus,
#back-to-top:hover{
	background: #e9ebec;
}

#back-to-top.show {
	opacity: 1;
}