html, body {
    height: 100%;
}

body{
	background-color: #ffffff;
	color: #000000;
}

.content{
	height: 100%;
	display: flex;
    align-items: center;
}


/**********************************************************
					LOGIN
***********************************************************/

body.login{
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
}

.login-form{
	margin: auto auto;
	min-width: 300px;
	width:50%;
}

.login-form form {
    margin-bottom: 15px;
    padding: 30px;
}
.login-form p {
    margin: auto auto;
	color: #000000;
}

.login-form .btn {
    width: 100%;
	height: 50px;
}


.form-control, .form-control:focus{
	/*background-color: #2A2F33;*/
	background-color: transparent;
	border: 1px solid #1E2428;
	border-radius: .25rem;
}


/**********************************************************
						CONTENT
***********************************************************/


/* LEFT MENU */

div.leftbanner{
	width: 100px;
	height: 100%;
	background-color: #262B2F;
	/*
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	*/
}

div.logo{
	margin: 10px;
}

div.logo img{
	width: 80%;
}


div#menu{
	/*align-self: center;*/
	margin-top: 10rem;
}

div#menu div.menuitem{
	min-height: 200px;
}

div#menu div.menuitem div.item{
	display: block;
	width: 100px;
	text-align: center;
	height: 100px;
	padding-top: 35%;
}

div#menu div.menuitem div.item:hover, div#menu div.menuitem div.item.active{
	background-color: #1E2428;
	-webkit-border-top-left-radius: 100px;
	-webkit-border-bottom-left-radius: 100px;
	-moz-border-radius-topleft: 100px;
	-moz-border-radius-bottomleft: 100px;
	border-top-left-radius: 100px;
	border-bottom-left-radius: 100px;
}

/* Top MENU */

div.topmenu{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	flex-direction: row;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	

	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	
	position: fixed;
	top: 5px;
	width: 100%;
	height: 50px;
}

div#menutopo div.item{
	float: left;
	text-align: center;
	padding: 20px;
}

div#menutopo div.item a{
	color: #000000;
	text-decoration: none;
}

div#menutopo div.item a:hover{
	color: #a1a1a1;
}

div#userinfo{
	position: absolute;
	top: 5px;
	right: 100px;
	padding: 20px;
}



/* Main Content */


div.maincontent{
	height: 100%;
	width: 96%;
    overflow: hidden;
    padding-top: 100px;
    padding-left: 10px;
	margin: 2%;
}

div#Title{
	margin-bottom: 20px;
}

div#Title h2{
	margin-bottom: 0;
}


/* Tables */


.table-dark {
    background-color: transparent;
}

table.dataTable thead th, table.dataTable tfoot th {
    font-weight: normal;
}

table.dataTable img.icon{
	margin: 0 10px;
}

.dataTables_wrapper .dataTables_filter input[type="search"] {
    margin-left: 10px;
	color: #fff;
}

div#ListTable_info{
	display: none;
}

.dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_paginate .paginate_button {
    font-size: .9em;
}

.dataTables_wrapper .ButtonsLeft{
	float:left;
}

div.TableBottom{
	margin-top: 20px;
}


table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc_disabled {
    background-position: center center;
}


table.dataTable a.inactive{
	opacity: 0.5;
}


table.dataTable a.active{
	color: lightgreen;
}


/* Modal */

.modal {
    top: 10%;
}

.modal-dialog {
    max-width: 600px;
    margin: 2rem auto;
	border: 1px solid #ddd;
	border-radius: 1rem;
	padding: .25rem;
}

.modal-content {
	padding: .75rem;
}

.modal-header, .modal-footer {
    display: block;
	border: 0 none;
}

.modal-footer .btn-sm {
    padding: .75rem 1.5rem;
}

.close, .close:hover{
    color: #fff;
    text-shadow: none;
    opacity: 1;
}

