html,body{
	outline: 0;
	padding: 0;
	margin: 0;
	background-color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.bold{
	font-weight: bold;
}

.header{
	width: 100%;
	height: 60px;
	background-color: #455A64;
	color: rgba(255,255,255,.87);
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.header .site-name{
	padding-left: 15px;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: bold;
}
.header .site-name span{
	display: block;
}
.header .site-name .version{
	font-size: 12px;
    text-transform: lowercase;
}

.container{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}

.container .menu{
	width: 300px;
    height: 100%;
    padding-top: 15px;
    position: fixed;
    background-color: #263238;
    color: rgba(255,255,255,.87);
}

.container .menu ul{
	margin: 0;
	padding: 0;
}
.container .menu li{
	list-style-type: none;
    margin: auto;
    padding: 0;
    overflow: hidden;
	text-transform: capitalize;
    cursor: pointer;
    height: 35px;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    align-items: center;
    -webkit-transition: background-color .55s ease;
    -moz-transition: background-color .55s ease;
    -ms-transition: background-color .55s ease;
    -o-transition: background-color .55s ease;
    transition: background-color .55s ease;
}
.container .menu li:hover{
	background-color: #90A4AE;
}

.container .icon{
	display: none;
	text-decoration: none;
	color: #fff;
	font-size: 26px;
}
.container .icon img{
	width: 24px;
	height: 24px;
}

.content{
	width: 100%;
	margin-left: 300px;
}

.content-header{
	display: flex;
    flex-direction: row;
    width: 600px;
    justify-content: space-between;
    padding: 10px;
    color: #fff;
    background-color: #009688;
}
.content .flex{
	width: 780px;
	display: flex;
	flex-direction: column;
	//padding-top: 15px;
	padding-left: 15px;
}
.content .flex div{
	display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 25px;
    padding-left: 15px;
    padding-right: 15px;
}
.content .flex div:first-child{
	font-weight: bold;
	color: #263238;
	padding-bottom: 5px;
}
.content .flex div:nth-child(even){
	background-color: #ECEFF1;
}
.content .flex div span{
	display: block;
}
.content .flex div span:nth-child(1){
	width: 150px;
}
.content .flex div span:nth-child(2){
	width: 150px;
}
.content .flex div span:nth-child(3){
	width: 150px;
}
.content .flex div span:nth-child(4){
	width: 150px;
}
.content .flex div span:nth-child(5){
	width: 150px;
	text-align: right;
}
.content .flex div span:nth-child(6){
	width: 150px;
	text-align: right;
}


.positive{
	color: green;
}
.negative{
	color: red;
}
.total{
	margin-top: 20px;
	border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    background-color: #FFFFFF !important;
}

.no-select{
   user-select: none;
   -o-user-select:none;
   -moz-user-select: none;
   -khtml-user-select: none;
   -webkit-user-select: none;
}



@media screen and (max-width:680px) {
	.container .menu{
		position: absolute;
		top: -160px;
		width: 100%;
		height: 45px;
		background-color: rgba(0,0,0,0.0);
		display: flex;
    	flex-direction: row-reverse;
		z-index: 1;
	}
	.container .icon {
		display: flex;
		position: absolute;
		right: 15px;
		top: 18px;
		z-index: 9999;
		color: #ffffff !important;
	}
	.container .menu li {
		flex-direction: row-reverse;
	}
	.content{
		margin-left: 0;
		font-size: 10px;
	}
	.content .flex{
		width: 100%;
		padding: 0px;
	}
	.menu.responsive{
		top: auto;
		height: auto;
		background-color: #455A64;
		padding-top: 0px;
		padding-bottom: 15px;
	}
}