* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	outline: none;
}

a {
	text-decoration: none;
	color: #000;
}

a:hover {	
	color: #fe016e;
}

body {
	font-family: 'Lato', sans-serif;
	display: flex;	
	height: 100vh;
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}
.body-ccc {
	background: #ccc;
}
.main-content {
	width: 100%;
	display: flex;
	flex-shrink: 0;
	flex-grow: 1;
}

/** HEADER **/

.container {
	width: 100%;
	padding: 0 20px;
	box-sizing:border-box;
}

header {
	width: 100%;
	height: 70px;
	border-bottom: 1px solid #e8e8e8;
	flex-shrink: 0;
	display: flex;
}
.logo-login {
	max-width: 300px;
	margin: 0 0 10px 0;
}
.logo-login__img {
	width: 100%;
	float: left;
}
.open-menu-box {
    min-width: 200px;
    background: #f7f7f7;
    height: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-right: 1px solid #e8e8e8;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    height: 69px;
}

.open-menu {
	display: block;
	max-height: 40px;
	max-width: 40px;	
}

.open-menu img {
	width: 100%;
	float: left;
}
.header-right {
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.logo-box {
	padding: 0 20px;
	background: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-right: 1px solid #e8e8e8;
    margin-left: 200px;
    flex-shrink: 0;
}
.logo {
	display: block;
	max-height: 40px;
	max-width: 140px;	
}
.logo img {
	width: 100%;
	float: left;
}
.session-time {
    border-left: 1px solid #e8e8e8;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 12px;
    align-items: center;
    align-content: center;    
}
.session-time-txt, .session-time-left, .session-time-refresh {
    width: 100%;
    display: flex;
    justify-content: inherit;
    flex-shrink: 0;
}
.session-time-refresh {
	font-weight: 600;
}

/** HEADER **/ /** END **/


/** ASIDE **/
aside {
    width: 220px;
    background: #f7f7f7;
    border-right: 1px solid #e8e8e8;
    position: fixed;
    overflow-x: hidden;
    overflow-y: scroll;
    height: 100%;
    padding-bottom: 120px;
}
.user {
	background: #fff;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 30px 20px;
}
.user-avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #fff;
	overflow: hidden;
}
.user-avatar img {
	width: 100%;	
}	
.user-name {
	width: 100%;
	display: flex;
	justify-content: center;
	margin: 20px 0 3px 0;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
}
.user-position {
	font-size: 12px;
	color: #fe016e;
	text-transform: uppercase;
	font-weight: 900;
}	
.user-last-login {
	font-size: 12px;
	color: #444444;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 20px 10px;
	text-transform: uppercase;
}
.user-last-login-time {
	color: #afafaf;
}	
.user-logout {
	font-size: 12px;
	color: #000;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 600;
}
.aside-menu {
	list-style-type: none;
    overflow-x: hidden;
    overflow-y: auto;
}
.aside-menu li {
	width: 100%;	
	border-top: 1px solid #e8e8e8;
	transition: all .3s;
}
.aside-menu li:hover {
	background: #fff;
}	
.aside-menu li a {
    text-decoration: none;
    color: #292929;
    padding: 15px 25px;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    transition: all .3s;
}	

.aside-menu li:hover a {
	transform: translateX(10px);
	color: #fe016e;
}

/** ASIDE **/ /** END **/



/** MAIN **/ 

.main {
	transition: .3s ease-in-out all;
    flex-grow: 1;
    margin-left: 199px;
    background: #f7f7f7;
    z-index: 1;
   	border-left: 1px solid #e8e8e8;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px; 
}
.main-full {
	margin-left: 0;
}
.content-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    width: 100%;
    margin-bottom: 1%;
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}
.content-box form {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.content-box h1 {
	font-size: 16px;
    color: #292929;
    text-transform: uppercase;
    border-bottom: 1px #e6e6e6 dashed;
    padding: 0 0 5px 0;
    width: 100%;	
    margin: 0 0 10px 0;
}
.search {
	flex-grow: 1;
	width: 100%;
}
.content-box-input {
    padding: 5px;
    width: 100%;
    border: 1px #d8d8d8 solid;
}
/** MAIN **/ /** END **/


.fill-empty-space {    
    width: 100%;	    
    background: transparent;
    flex-grow: 1;

}
footer {
	width: 100%;
	border-top: 1px solid #e8e8e8;
	flex-shrink: 0;
	height: 50px;
    z-index: 1;
    background: #fff;
}
.footer-text {
	color: #7b7b7b;
	font-size: 14px;	
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 25px;
	justify-content: space-between;
}


/** LOGIN **/

.login-box {
	margin: 0 auto 0 auto;
	width: 100%;
	max-width: 400px;	
	box-sizing: border-box;
	padding: 20px;
	border-radius: 5px;
	border: 1px #adadad solid;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	background: #fff;
	box-shadow: 0 0 5px #f2f2f2;	
}
.login-box:hover {
	box-shadow: 0 0 10px #f2f2f2;
}
.login-label {
	width: 100%;
	margin: 10px 0 3px 0;
}
.login-input {
	width: 100%;
    height: 41px;
    border: 1px #d8d8d8 solid;
    box-sizing: border-box;
    padding: 0 10px;
}

.sep {
	width: 100%;
	margin: 20px 0;
	border: 1px #f2f2f2 dashed;
	padding: 0 20px;
	box-sizing: border-box;
}
.ok {
    padding: 5px 10px;
    border: 0;
    background: #5a5a5a;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;	
    transition: .3s ease-in-out all;
    margin: 20px 0 0 0;
}
.ok:hover {
	background: #000;
}

.flex {
	display: flex;
	width: 100%;
}
.space-bet {
	justify-content: space-between;
}

.table {
	width: 100%;
	list-style-type: none;
}
.table-li {
	width: 100%;
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px #f2f2f2 solid;	
}
.label {
	width: 100%;
	margin: 15px 0 0 0;
	float: left;
}
.input {
	width: 100%;
	padding: 5px;
	margin: 5px 0 0 0;
	font-family: arial;
    font-size: 12px;    
    border: 1px #a9a9a9 solid;
}
.input-small {
	padding: 5px;
	font-family: arial;
    font-size: 12px;    
    border: 1px #a9a9a9 solid;
    margin-right: 5px;
}
.enableEdit {
	color: #fe016e;
	cursor: pointer;
}
.enableEdit:hover {
	text-decoration: underline;
}	
.textarea {
	width:100%;
	padding: 5px;
	height: 100px;
	font-family: arial;
    font-size: 12px;
    line-height: 19px;	
}
.input[readonly], .textarea[readonly]
{
    background-color:#eaeaea;
}

.select {
	width: 100%;
	padding: 5px;
	margin: 5px 0 0 0;
	font-family: arial;
    font-size: 12px;    
    border: 1px #a9a9a9 solid;
}
.select[disabled]
{
    background-color:#eaeaea; 
}

.tb {
	width: 100%;
}
.tb th {
	text-align: left;
}
.tb tr {
	padding: 2px 0 14px 0;
}
.tb tr:hover {
	background: #f2f2f2;
}
.td {
	padding: 3px 0;
}