/*@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";*/
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,700";
/** 
 * CORE STYLES & RESETS
 */
* {
	 font-family: 'Poppins', sans-serif;
}
body {
    background: #fafafa;
    color: #999;
    padding: 0;
    margin: 0;
    min-height: 600px;
    overflow: hidden;
}
p {
    font-size: 1.1em;
    line-height: 1.7;
}
a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}
ul,ul li {
	display: block;
	padding: 0;
}

/** 
 * APP LAYOUT STYLES
 */
.wrapper {
    display: flex;
    flex-flow: row wrap;
}

#app-window {
    background: transparent url(../assets/localhero-logo-blue.svg) no-repeat center center;
}
#app-header {
	width:100%;
}
/** 
 * APP BRAND STYLES
 */
#app-header,
#app-nav,
#account-nav {
    background: #1A2550;
    color: #FFFFFF;
}

#app-header {
    display: flex;
}

#header-logout {
    width: 100%;
    text-align: right;
    margin-top: auto;
    margin-bottom: auto;
    padding-right: 15px;
}

/** 
 * NAVIGATION SIDEBAR
 */
#app-nav {
    transition: all 0.3s;
}
#account-nav {
	position: absolute;
	bottom: 0;
	left: 0;
}
#app-nav li,
#account-nav li {
	padding: 1.5em 0 0 0;
    text-align: center;
    font-size: 60%;
}

#account-nav li {
    margin-top: 10px;
}

#app-nav img:hover,
#app-nav img:active{
    background: rgba(255,255,255,0.2);
    border-radius: 1.5em;
    transition: all 0.3s;
}

/** 
 * APP WINDOW
 */
#app-window iframe {
	border: none;
	height: 100%;
	width: 100%;
}